section{
    width:100vw;
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: var(--main_font);
}

.login_links{
    width: 500px;
}

.login_links h1{
   font-size: 3rem;
   text-align: center;
   color: var(--font_color_02);
}

.login_links h2{
    font-size: 2rem;
    text-align: center;
    color: var(--font_color_01);
    font-weight: 100;
    margin-bottom: 50px;
 }

.select{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-around;
}

.select .link{
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    border-radius: 10px;
    box-shadow: 0 0 5px black;
    background-color: var(--color_04);
    transition: all .2s;
    text-decoration: none;
    color: var(--color_02);
}

.select .link img{
    width:30px;
    
}

.select .link:hover{
    background-color: var(--color_03);
}

.super_admin{
    position: absolute;
    bottom: 100px;
    right: 60px;
}

.super_admin img{
    width: 50px;
}

.super_admin img:hover{    
    transform: translateY(-10%);
}


/* Tablet */
@media screen and (max-width:600px) {
    .login_links{
        width: 400px;
        font-size: small;
        font-weight: 600;
    }
}
/* Mobile */
@media screen and (max-width:400px) {
    .login_links{
        width: 250px;
    }

    .login_links h1{
        font-size: 2rem;
    }

    .login_links h2{
        font-size: 1.3rem;
    }

    .select{
        height: 80%;
        flex-direction: column;
    }

    .select .link{
        width:80px;
        height: 80px;
    }
}