*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.mainContainer{
    position: relative;
    background-color: #1F1C24;
    width: 100%;
    padding-bottom: 5rem;
}

.hide-title{
    display: none !important;
}

header{
    min-height: 100vh;
    width: 100vw;
    position: relative;
    background-color: #090909;
    overflow: hidden;
    /* background-position-y: 80%;
    background-attachment: fixed; */
}

.header-content{
    width: 100%;
    display: flex;
    align-items: center;
    position: fixed;
    top: 180px;
    z-index: 0;
}

.header-img{
    width: 50%;
    margin-left: 5rem;
    display: flex;
    justify-content: center;
}

.home-intro{
    min-height: 150px;
    margin-right: 2rem;
    color: #FBF1CA;
    font-size: 4rem;
    font-family: 'Aboreto', cursive;
    width: 3rem;
}

.hidden{
    opacity: 0;
    visibility: hidden;
}

.team-logo-background {
/* position: absolute;
    top:0;
    right:0; */
/* height: 250px;
    width: 300px; */

    flex: 1;
    width: 9rem;
    height: 6rem;
    transition: scale 1s;
}

@media (max-width: 990px) {
/* .team-logo-background{
    margin-top: 12px;
    height: 165px;
    width: 200px;
    } */
}

.show-sideMenu-btn {
/* position: fixed;
    top: 28%;
    right: 1rem; */
    width: 4rem;
    height: 4rem;
    border: none;
    background: transparent;
    margin-left: 2rem;
    transition: all 250ms;
}

.show-sideMenu-btn img {
    width: 100%;
}

.toHeader-btn {
    position: fixed;
    filter: invert(100%);
    border: none;
    border-radius: 50%;
    width: 7rem;
    height: 7rem;
    right: 0rem;
    bottom: 0rem;
    opacity: 0;
    transition: all 200ms ease;
}

.toHeader-btn img {
    width: 100%;
    transition: rotate 250ms;
}

.showBtn {
    scale: 0.6;
    opacity: 1;
}

/* .navFixed {
    position: fixed;
    transition: all 200ms ease;
}

.showNav {
    animation: dropNav;
    animation-duration: 200ms;
}

@keyframes dropNav {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0%);
    }
} */

.sideMenu-container {
    position: fixed;
    right: 1rem;
    top: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-right: 0.5rem;
}

.sideMenu-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.sideMenu-link {
    border-radius: 50%;
    box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.33);
    transform: translateX(150%);
}

.show-sideMenu-link {
    animation: showLink 350ms forwards ease-in;
}

.hide-sideMenu-link {
    animation: hideLink 350ms forwards ease-in;
}

.sideMenu-links img {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
}

@keyframes showLink {
    0% {
        transform: translateX(150%);
    }

    90% {
        transform: translateX(-18%);
    }

    100% {
        transform: translateX(0%);
    }
    }

    @keyframes hideLink {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(150%);
    }
}

header {
    color: #FBF1CA ; 

    display: flex;
    flex-direction: column;
    font-family: 'Aboreto', cursive;
}

.header-SVG{
    width: 35rem;
}

.headerContainer{
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Side dot container menu */

.sideMenu{
    position: fixed;
    top: 50%;
    right: 5rem;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 2rem;
}

.sideMenu .dot{
    width: 0.6rem;
    aspect-ratio: 1;
    background-color: #786292;
    border-radius: 50%;
    cursor: pointer;
    transition: scale 250ms;
}

.dot-enlarge{
    scale: 2;
}

.sideMenu .cloud{
    position: relative;
    width: 7rem;
    height: 3rem;
    background-color: #786292;
    transition: opacity 250ms;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FBF1CA;
    border-radius: 4px;
}

.cloud-invisible{
    opacity: 0;
}

.sideMenu .cloud::after{
    content: '';
    position: absolute;
    right: -8%;
    top: 50%;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #786292;
    transform: translateY(-50%);
}

@media(max-width: 80rem){
    .header-img{
        width: auto;
        justify-content: start;
        margin-left: 3rem;
    }
}

@media(max-width: 72rem){
    .home-intro{
        font-size: 3rem;
    }
}

@media(max-width: 992px){
    .header-img{
        width: 50%;
        justify-content: center;
        margin-left: 0;
    }
}

@media(max-width: 829px){
    .header-content{
        justify-content: center;
    }
    .static-title{
        position: absolute;
        width: 100%; 
        min-height: 150px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 0;
        background-color: #928b73bd;
        font-size: 3rem;
        font-family: 'Aboreto', cursive;
    }

    .page-title{
        text-align: center;
    }

    @supports (backdrop-filter: blur(.3rem)){
        .home-intro{
            backdrop-filter: blur(0.2rem);
        }
    }
}