body,html{
    margin: 0;
    padding: 0;
    background-color: #E6E6E6;
}
.fullFlex{
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    animation: slideup 1s ease forwards;
}
.heavyLex{
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    color: #212121;
}
.lightLex{
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: #212121; 
}
.fancyFont{
    font-family: "Niconne", cursive;
    font-weight: 400;
    font-style: normal;
    color: #212121; 
}
.title{
    font-size: 200px;
    text-shadow: 2px 3px 3px #00000036;
    margin: 0;
}
.subtitle{
    margin: 0;
    text-shadow: 0px 1px 1px #00000017;

}
.big{
    font-size: 64px;
    margin-left: 20px;
    margin-bottom: 20px;
    margin-top: 20px;
}
.left{
    text-align: left;
    font-size: 40px;
    margin-left: 100px;
}
.sectionHeader{
    width: 100vw;
    font-size: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 50px;
}
.selectionSection{
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.selectionItem{
    font-size: 64px;
    transition: all ease 0.3s;
    margin: 0;
}
.selectionItem:hover{
    transform: scale(1.1);
    color: #0c0c0c;
    cursor: pointer;
}
@keyframes slideup {
    0%{
        transform: translateY(80px);
        opacity: 0;
    }
    100%{
        transform: translateY(0px);
        opacity: 1;
    }
}