/*#region Splash*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    padding: 1rem;
    font-family: 'Poppins';
    text-decoration: none;
}

.splash-page{
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.splash-page .logo{
    display: flex;
    flex-direction: column;
    align-self: center;
    justify-content: center;
}

.splash-page .logo img{
    width: 9rem;
    display: flex;
    align-self: center;
}

.splash-page .logo .subtitle{
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1.2px;
}

.box .options{
    display: flex;
    justify-content: center;
    align-items: center;
}

.splash-page .text{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
}

.splash-page .text .title{
    font-size: 2rem;
    font-weight: 600;
}

.splash-page .text .desc{
    color: #7E8392;
    text-align: center;
    font-size: 1rem;
}

.splash-page .option{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    border: solid 2px #EBF2F5;
    border-radius: 20px;
    min-width: 40vw;
    height: 25vh;
}

.splash-page .options a{
    font-size: 1rem;
    text-align: center;
    color: black;
    text-decoration: none;
}

.misc-title{
    font-weight: bold;
    margin-top: 1rem;
    padding: .5rem 1rem ;
    background-color: #F4F4F5;
    border-radius: 20px;
    align-self: center;
}
/*#endregion*/