:root{
    --primary-color: #004a9e;
    --secondary-color: #6efacc;
    --background-color: #0c0f31;
    --text-color:#eae9fc;
    --accent-color:#00b6bd;
    font-size: 20px;
    scroll-behavior: smooth;
}
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body{
    margin-top: 10vh;
    background: var(--background-color);
    width: 100vw;
    height: 100vh;
    color: var(--text-color);
    font-family: "ubuntu", sans-serif;
}
nav{
    display: flex;
    position: fixed;
    top: 0;
    flex-direction: row;
    width: 100vw;
    height: 4rem;
    align-items: center;
    text-align: center;
    justify-content: center;
    z-index: 1000;
    background: #0c0f3167 ;
}
nav a{
    text-decoration: none;
    color: var(--text-color);
    text-shadow: 0 0 5px var(--text-color);
    font-size: 1.44rem;
    flex: 5%;
    text-align: center;
    align-items: center;
    margin: 0 auto;
    font-family: "Ubuntu", sans-serif;
}
nav a:hover{
    color: var(--secondary-color);
    text-shadow: 0 0 10px var(--secondary-color);
    scale: 1.1;
    transition-duration: 0.3s;
}

::-webkit-scrollbar{
    display: none;
}
.font-title{
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-size: 3rem !important;
    flex: 10%;
    font-weight: 700;
}
.more-icon{
    cursor: pointer;
    width: 75px;
    height: 75px;
    display: none;
}

@media screen and (max-width: 1600px) {
    .more-icon{
        display: block;
    }
    nav{
        justify-content: center;
    }
    nav a{
        display: none;
    }
    
    .font-title{
        display: block;
        width: 100% ;
        text-align: center;
    }
}
.more-section{
    position: fixed;
    height: 100vh;
    width: 100vw;
    top:0;
    left: 0;
    z-index: 1001;
    background: linear-gradient(135deg, var(--background-color), var(--primary-color));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    row-gap: 30px;
    padding-bottom: 10vh;
    animation: slidein 0.5s ease-out;
}
.more-section .more-pages{
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    margin-top: 5rem;
}
.more-section a{
    text-decoration: none;
    background: var(--accent-color);
    color: var(--background-color);
    font-family: "quicksand", sans-serif;
    border-left: 5px solid var(--secondary-color);
    border-bottom: 5px solid var(--secondary-color);
    box-shadow: -5px 5px 10px var(--accent-color);
    color: var(--background-color);
    font-size:2rem ;
    height: 4rem;
    width: 60vw;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 10px;
}
.more-section a:hover{
    color: var(--secondary-color);
    text-shadow: 0 0 10px var(--secondary-color);
}
.more-section button{
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: var(--secondary-color); 
    color: var(--background-color);
    font-family: 'quicksand', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 0 10px var(--accent-color);
}
.more-section .more-contact{
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
    row-gap: 30px;
    width: 100%;

}
.more-section .more-contact a{
    display: flex;
    justify-content: space-between;
    width: 275px;
    height: 70px;
    align-items: center;
    padding-right: 20px;
    text-decoration: none;
    font-weight: 800;
    border-radius: 15px;
}
.more-section .more-contact a:nth-child(1){
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
}
.more-section .more-contact a:nth-child(2){
    background:#24A1DE;
}
.more-section .more-contact a:nth-child(3){
    background: #25d366;
    color: black;
    text-shadow: 0 0 3px black;
}
.more-section .more-contact a:nth-child(4){
    background: linear-gradient(-90deg, var(--primary-color), var(--secondary-color));
    color: var(--text-color);
    text-shadow: 0 0 3px var(--text-color);

}
.more-section .more-contact img{
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background: none;
}
@keyframes slidein {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
.popuplayer{
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 10001;
    display: flex;
    justify-content: center;
    background: rgba(10, 3, 41, 0.247);

}


@keyframes popup{
    0%{
        scale: 0;
    }
    50%{
        scale: 1.1;
    }
    75%{
        scale: 1;

    }
    76%{

    }
    100%{

    }
}