html, body{
    margin: 0;
    font-family: "Outfit";
    background-color: var(--light1);
    color: var(--dark1);
    font-size: 15px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    overflow: auto;
}

main{
    padding: 75px 0 75px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
} 
main a{
    position: relative;
    z-index: 1;
    font-family: "Lora";
    color: var(--dark1);
    font-weight: 600;
    font-size: 25px;
    text-decoration: none;
    display: block;
    width: fit-content;
}
main a:after{
    content: "";
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 120%;
    height: 5px;
    z-index: -1;
    background: linear-gradient(to right, var(--main-yellow-light), 20%, var(--main-yellow), 65%, var(--main-pink), 85%, var(--main-pink-transparent));
}
main a .arrow-cont{
    position: absolute;
    filter: invert(1);
}
main a .arrow-cont:nth-child(1){
    height: 30px;
    top: -23px;
    left: -19px;
    transform: rotateZ(-40deg);
}
main a .arrow-cont:nth-child(2){
    height: 30px;
    top: -30px;
    right: -23px;
    transform: rotateZ(40deg);
}
main a .arrow-cont:nth-child(3){
    height: 23px;
    bottom: -25px;
    right: 10px;
    transform: rotateZ(140deg);
}
main a .arrow-cont:nth-child(1) img{
    height: 30px;
    animation: bounce 2s 1s infinite;
}
main a .arrow-cont:nth-child(2) img{
    height: 30px;
    animation: bounce 2s 1.2s infinite;
}
main a .arrow-cont:nth-child(3) img{
    height: 23px;
    animation: bounce 2s 1.4s infinite;
}
@keyframes bounce {
    0% {transform: scale(1)}
    25% {transform: scale(1.3)}
    50% {transform: scale(1)}
    100% {transform: scale(1)}
}