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

body {
    overflow-x:hidden;
    width: 100vw;
    margin: 0;
    font-family: 'Bricolage Grotesque', sans-serif;
    padding-top: 15vh;
    min-height: 100vh;
    margin: 0;
    font-size: 1.5vw;
    display: flex;
    flex-direction: column;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
}

.div {
    background-color: #579dff;
    font-size: 2.5vw; 
    font-weight: bold;
    color: white;
    height: 20vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.paragraph {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: center;
}

.paragraph img {
    width: 120px;
    height: auto;
    border-radius: 8px;
}

.paragraph p {
    margin: 0;
    line-height: 1.6;
}

/* NAVBAR */

ul.navbar {
    list-style: none;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100vw;
    height: 15vh;
    background-color: #ff54da;
    z-index: 1000;
    padding: 0;
}

ul.navbar li {
    margin: 0 10px;
    display: flex;
    align-items: center;
}

ul.navbar a {
    color: #262626;
    text-decoration: none;
    font-size: 2vw; 
    transition: 0.25s;
    font-weight: bold;
    display: block;
    padding: 6.5vh 2vw; 
    margin: 0; 
}

ul.navbar a:hover {
    color: white;
}

ul.navbar i {
    font-size: 2.5vw;
    line-height: 1;
}

ul.navbar .homeicon {
    font-size: min(5vw, 8vw);
    line-height: 1;
}

.navbar a[aria-current="page"] {
    background-color: #579dff;
    color: white;
    font-weight: bold;
}

.text {
    background-color: #262626;
    color: white;
    flex: 1;
    padding: 20px 60px;
}

footer {
    text-align: center;
    padding: 2vw 5vh;
}

@media (max-width: 768px) {
    .level {
        display: flex; 
        flex-direction: column;
        margin: auto; 
    }

    ul.navbar {
        font-size: 5vw; 
        gap: 1vw;
    }
};

#acc_details {
    display: block; 
    width: 20vw; 
    position: sticky; 
    background-color:  #d9d9d9;
    z-index: 20000; 
}

.auth-btn {
    padding: 10px 16px;
    margin: 5px;
    border: none;
    border-radius: 10px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.2s ease;
}
.login-btn {
    background-color: #ffee0b;
    color: #262626;
}

.login-btn:hover {
    background-color: #e9d906;
    transform: scale(1.05);
}

.delete-btn {
    background-color: #ff54da;
    color: #262626;
}

.delete-btn:hover {
    background-color: #fe47d6;
    transform: scale(1.05);
}

.signup-btn {
    background-color: #08ff98;
    color: #262626;
}

.signup-btn:hover {
    background-color: #06df85;
    transform: scale(1.05);
}

ul.level li {
    width: 20vw;
    height: 25vh;
    display: flex;
    flex-direction: column;  
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.progress-text {
    font-size: 1.5vw;
    font-weight: bold;
    margin: 0;
}

#acc_details {
    display: none;
    text-align: center;
    padding: 15px;
    border-radius: 0 0 15px 0; 
    width: fit-content;
    min-width: 15vw;
    
}

.acc-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: flex-start; 
    align-items: center;
}

#acc_details {
    position: fixed; display: none; 
    background-color: #d9d9d9;
    width: 25vw; left: 70vw;
    padding: 10px 20px;
    top: 15vh;
    z-index: 20000; 
}

.acc-actions .auth-btn {
    white-space: nowrap; 
    font-size: 1vw;
    margin: 0;
}

.username-color {
    color: #262626;
    margin-bottom: 5px;
    font-size: 1.5vw;
}

#pfp {
    height: 10vh; width: auto;
    border-radius: 50%;
    background-color: #262626;
}