/*
:root{
    --primary: linear-gradient(0deg, #ff00cc, #3333ff);
    --reverse: linear-gradient(0deg, #3333ff, #ff00cc);
    --secondary: linear-gradient(90deg, #ff5f1f, #9d00ff);
    --scrollbar: #fff;
}
*/

:root{
    --primary: linear-gradient(0deg, #003366, #4A90E2);
    --primary2: linear-gradient(0deg, #ff00cc, #3333ff);
    --secondary: linear-gradient(90deg, #87CEEB, #000080);
    --scrollbar: #fff;
}


*,*::before, *::after{
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

html{
    box-sizing: border-box;
    font-size: 62.5%;
    background: var(--primary);
}

body{
    font: 1.5rem 'poppins', sans-serif;
}

::-webkit-scrollbar {
    width: .5rem;
}

::-webkit-scrollbar-thumb {
    background-color: var(--scrollbar);
    border-radius: .5rem;
}

::-webkit-scrollbar-track {
    background: #6bc2eb;
    background-clip: content-box;
}

ul{
    list-style: none;
}

ul li{
    padding: 1.2rem 1rem;
    font-size: 2rem;
    border-radius: .6rem;
    transition: .2s ease-in-out;
}

ul li:hover{
    background-color: #fff2;
}

button{
    background-color: transparent;
    border: none;
    border-radius: .6rem;

}

[contenteditable]:focus{
    outline: none;
    border-bottom: .1rem solid white;
}
.app{
    height: 100vh;
    max-width: 1260px;
    margin: auto;
    background: var(--primary);
    color: white;
    display: flex;
}

aside{
    background: var(--primary);
    -webkit-box-shadow: 5px 5px 40px 5px rgba(0,0,0,0.5); 
    box-shadow: 5px 5px 40px 5px rgba(0,0,0,0.5);
}

aside, .hints{
    color: #fff;
    width: 25%;
    padding: 1rem;
}

aside nav{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

aside nav button{
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: .1rem solid #fff;
    color: #fff;
    text-align: left;
    font-size: 2rem;
    transition: .2s ease-in-out;
}

aside nav button:hover{
    background-color: #fff;
    color: #111;
}

aside nav .nav-top ul{
    max-height: 60rem;
    overflow-y: auto;
    overflow-y: overlay;
}

aside nav .nav-top ul li{
    background-color: #fff2;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 .3rem .7rem #0001;
    max-width: 90%;
    margin-left: 1rem;
}

aside nav .nav-top ul li:hover{
    background-color: #fff9;
    transform: scale(1.05);
}

aside nav .nav-top ul li:not(:last-child){
    margin-bottom: 1rem;
}

#content{
    width: 100%;
    padding: 1rem;
    overflow-y: auto;
    overflow-y: overlay;
}

.ctop {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    border-radius: .5rem;
    padding: 1rem; 
}

.logo {
    margin-right: 1rem;
    width: 25%; 
    max-height: 200px;
    max-width: 150px;
    display: flex;
    justify-content: flex-end; 
}

.logo img {
    max-width: 80%; 
    height: auto;
}

.ctop p {
    margin: auto; 
    font-size: 7rem; 
    font-family: 'Oswald', sans-serif; 
    
    letter-spacing: -0.05em; 
    background: linear-gradient(#9ff5f8, #ffffff);
    background-size: 200% 200%; 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 5s infinite linear;
}

@keyframes shine {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    .logo {
        width: 50%;
        max-width: 100px;
    }

    .ctop p {
        font-size: 4rem;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 75%;
        max-width: 80px;
    }

    .ctop p {
        font-size: 2rem;
    }
}