

button:hover{
    cursor: pointer;
}

#mainWrapper {
    height: 100dvh;
    display: flex;
    flex-direction: row;
    align-items: center;
}

#logoBlink{
    width: 30%;
    margin: 10px 0px;
}

#socials{
    text-align: center;
}

#socials a{
    width: 100%;
    height: fit-content;
    text-decoration: none;
    
}

#socials svg:hover{
    scale: 0.9;
    transition: scale .3s ease;
}

#socials svg{
    width: 13%;
    margin: 0px 10px;
    
    margin-bottom: 10px;
    scale: 1;
    transition: scale .2s ease;
}

#mainContent {
    text-align: center;
    width: 50%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;

}


#contentWrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 90%;
    
}

#contentWrapper h1{
    font-size: 38px;
    margin-bottom: 10px;
    margin-top: 10px;
}

#contentWrapper p{
    padding: 0px 25px;
    font-size: 20px;
    text-align: left;
}

#contentWrapper p{
    margin-bottom: 10px;
}

#sideContent{
    width: 50%;
    padding: 30px;
    text-align: center;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    position: relative;
    margin-bottom: 10px;
}

#sideContent button{
    border: 2px solid var(--white);
    background-color: var(--pink);
    color: var(--white);

    font-size: 30px;
    font-weight: bolder;
    padding: 8px 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    
}


#sideContentWrapper{
    width: 40dvw;
    min-height: 32dvh;
    height: calc(33.3dvh - 20px);
    
    margin: 10px 0px;
    margin-bottom: 15px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;


    transition: transform 1s ease, opacity .3s ease, scale 1s ease, top 1s;
    position: absolute;
    top: 0;

    
}

#sideContentWrapper #imgLink svg{
    width: 100%;
    margin: 0px ;

    margin-bottom: 0px;
    scale: 1;
    transition: scale .2s ease;
    cursor: default;
}


#sideContentWrapper #imgLink {
    width: 8%;
    height: fit-content;
    text-decoration: none;
    cursor: default;
}

#sideContentWrapper.active  #imgLink svg:hover{
    scale: 0.9;
    transition: scale .3s ease;
    cursor: pointer;
}

#sideContentWrapper.active #imgLink a:hover {
    cursor: pointer;
}




#sideContentWrapper.active{
    opacity: 1;
    transform: scale(1.1);
    z-index: 9;
    transition: transform 1s ease, opacity .3s ease, scale 1s ease, top 1s;
}

#sideContentWrapper.deactive{
    opacity: .7;
    transform: scale(0.9);
    z-index: 6;
    transition: transform 1s ease, opacity 1s ease, scale 1s ease, top 1s;
}



#sideContentWrapper.deactive:hover{

    transform: scale(0.95);
    opacity: .75;
    transition: opacity 1s ease, scale 1s eases;
}

#sideContentWrapper h2{
    font-size: 28px;
    margin-bottom: 10px;
    margin-top: 0px;
}

#sideContentWrapper p{
    padding: 0px 25px;
    font-size: 18px;
    text-align: left;
    margin-bottom: 10px;
}


#sideContentWrapper p, h2{
    font-size: 1.2dvw;
}

#sideContentWrapper .button-pink{
    border: 2px solid var(--black);
    background-color: var(--pink);
    color: var(--white);

}

#sideContentWrapper .button-yellow{
    border: 2px solid var(--black);
    background-color: var(--yellow);
    color: var(--black);
}


#sideContentWrapper .button-pink, #sideContentWrapper .button-yellow{
    scale: 1;
    width: 50%;
    font-size: 20px;
    font-weight: bolder;
    margin: 10px 0px;
    transition: scale 0.3s ease;
    cursor: default;
}

#sideContentWrapper.active .button-pink:hover, #sideContentWrapper.active .button-yellow:hover{
    scale: 0.9;
    transition: scale 0.2s ease;
    cursor: pointer;
}


@media(max-width: 1100px){
    #sideContentWrapper .button-pink, #sideContentWrapper .button-yellow{
        width: 40%;
        font-size: 15px;
    }
    #sideContentWrapper p, h2{
        font-size: 1.5dvw;
    }
}

@media(max-width: 850px){
    
    #sideContentWrapper p, h2{
        font-size: 1.8dvw;
    }
    #logoBlink{
        width: 50%;
    }
    #contentWrapper{
        width: 50dvw;
    }
}



@media(max-width: 700px){

    #mainWrapper{
        height: auto;
        flex-direction: column;
    }

    #logoBlink{
        width: 250px;
    }

    #contentWrapper, #sideContentWrapper{
        width: 90dvw;
 
    }

    #sideContentWrapper .button-pink, #sideContentWrapper .button-yellow{
        font-size: 18px;
    }

    #sideContentWrapper p, h2{
        font-size: 18px;
    }
}

@media(max-width: 450px){
    #sideContentWrapper .button-pink, #sideContentWrapper .button-yellow{
        font-size: 15px;
    }

    #sideContentWrapper p, h2{
        font-size: 14px;
    }
}