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


body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: black;
    color: white;
    overflow: auto;
    height: 100vh;
}
header, section{
    background-color: rgb(0, 6, 26);
    border-radius: 10px;
    padding: 1vh;
    margin: 1vh;
}

footer{
    padding: 2vh;
    margin: 2vh;
}
button{
    background-color: rgb(0, 92, 142);
    border-radius: 10px;
    font-size: 20px;
    padding: 2vw;
    margin: 2vw;
    width: 80vw;
    color: white;
    border: none;
}

button:hover{
    transform: scale(1.05);
    transition: transform 0.1s;
}

button:active{
    transform: scale(0.9);
    transition: transform 0.1s;
}


h1{
    text-align: center;
}

h3{
    text-align: center;
}

a{
    color: white;
}
.container{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 1vw;
}

.click-info{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.achievements-list{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#achievements{
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border-radius: 10px;
    z-index: 1000;
    overflow: auto;
}
