#content {
    main {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
        height: 100%;

        #home-title {
            margin-top: 5%;
            width: 90%;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;


            p {
                font-size: 2.5rem;
                font-weight: bold;
            }

            #ht-red {
                color: var(--accent);
                font-size: 2.75rem;
                margin-top: 2.5%;
            }
        }

        #home-buttons {
            width: 85%;

            .btn {
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: space-between;
                border-radius: 5px;
                padding: 5% 2.5%;
                background-color: var(--secondary);
                text-decoration: none;
                margin-bottom: 3%;

                p {
                    color: #FFFFFF;
                    font-weight: bold;
                    font-size: 1.05rem;
                }

                img {
                    aspect-ratio: 1/1;
                    width: 7%;
                }
            }
        }
    }
}