html{
    font-size: 12px;
}

body{
    font-family: Roboto, Arial, Helvetica, sans-serif;
    color: #333333;

    max-width: 1680px;
    margin: auto;
    padding-left: 0.625rem;
    padding-right: 0.625rem;
}

h1{
    color: #606060;
    padding-top: 2rem;
}
    h1 .h-1{
        font-size: 4rem;
        line-height: 4.25rem;
        font-weight: 500;
        text-transform: uppercase;
    }
    h1 .h-2{
        font-size: 6rem;
        line-height: 6rem;
        font-weight: 600;
        text-transform: uppercase;
    }
    h1 .h-3{
        font-size: 2.875rem;
        font-weight: 500;
    }

h2{
    font-size: 2rem;
    font-weight: 500;
    padding-top: 3rem;
}

header{
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(204, 204, 204, 0.3);
}

.content{
    max-width: 1440px;
    min-height: calc(100vh - 8.75rem);
    margin: auto;
    display: flex;
    flex-wrap: wrap;
}

    .main-content{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .content .text-block{
        position: relative;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .content .text-block .setting-bg{
        position: absolute;
        z-index: -1;
        transition: all .5s ease-out;
    }
        .content .text-block:hover .setting-bg{
            transform: rotate(60deg);
        }

    .content .sites-link{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
        .content .sites-link a{
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;

            text-decoration: none;
            padding: 0.5rem 2rem;
        }
            .content .sites-link a div{
                display: flex;
                justify-content: center;
                align-items: center;
                height: 3rem;
                width: 3rem;
                border-radius: 25px;
                background: #FFFFFF;
                box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.25);
                transition: all .35s ease-out;
            }
            .content .sites-link a:hover div{
                box-shadow: 0px 0px 16px rgba(64, 110, 213, 0.85);
            }
            .content .sites-link a div img{
                width: 100%;
                height: auto;
                margin: 4px;
            }

        .content .sites-link a span{
            font-size: 1.25rem;
            font-weight: 500;
            color: #606060;
            margin-top: 0.75rem;
        }

footer{
    padding: 1rem 0;
    border-top: 1px solid rgba(204, 204, 204, 0.3);

    display: flex;
    align-items: center;
    justify-content: flex-end;
}
    footer span{
        font-size: 0.75rem;
        color: #606060;
    }

.w-50{
    width: 50%;
}
    
.w-100{
    width: 100%;
}

.d-none{
    display: none;
}

@media (min-width:1200px) {
    html{
        font-size: 16px;
    }
    
    .d-xl-flex{
        display: flex !important;
    }

    .justify-content-xl-between{
        justify-content: space-between !important;
    }
}