*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    user-select: none;
}
.press-start-2p-regular {
    font-family: "Press Start 2P", system-ui;
    font-weight: 400;
    font-style: normal;
}

body{
    height: auto;
    width: 100%;
    background: linear-gradient(45deg, #004df3, #46beff, rgb(149, 5, 142));
    background-attachment: fixed;
    background-size: cover;

}
nav button{
    margin: 1.5% 0 0 1.5%;
    display: flex;
    width: 60px;
    height: 60px;
    padding: 18px;
    flex-direction: column;
    align-items: flex-start;
    border: 2px solid rgba(255, 255, 255, 0.20);
    background: rgba(255, 255, 255, 0.10);
    cursor: pointer;
}
button:hover{
    transform: scale(1.1);
    transition: 0.3s;
}
main{
    margin: 5% 0 0 0;
}
main h1{
    color: #FFF;
    text-align: center;
    font-family: "Press Start 2P";
    font-size: 74px;
    font-style: normal;
}
main h2{
    text-align: center;
    font-family: "Press Start 2P";
    font-size: 46px;
    font-style: normal;
    background: linear-gradient(90deg, #FDC700 0%, #FF6900 50%, #F6339A 100%);
    background-clip: text;
    color: transparent;
}
.button{
    margin:3% 0 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.button button{
    width: 31vw;
    height: 8vh;
    font-family: "Press Start 2P";
    border: 4px solid #FFDF20;
    background: linear-gradient(90deg, #FDC700 0%, #FF6900 100%);
    box-shadow: 0 10px 15px -3px rgba(255, 105, 0, 0.50), 0 4px 6px -4px rgba(255, 105, 0, 0.50);
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    cursor: pointer;

}
.flex{
    margin:1% 0 0 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap:16px;
}
.flex button{
    width: 31vw;
    height: 8vh;
    border: 4px solid rgba(255, 255, 255, 0.30);
    background: rgba(255, 255, 255, 0.10);
    box-shadow: none;
}

.modal{
    background-color: rgba(0, 0, 0, 0.3);
    position:absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
}

.modal.show{
    opacity: 1;
    pointer-events: auto;
}
.modal2{
    background-color: rgba(0, 0, 0, 0.3);
    position:absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
}
.modal2.show{
    opacity: 1;
    pointer-events: auto;
}


.score{
    border: 4px solid #00D3F2;
    background: linear-gradient(135deg, #59168B 0%, #1C398E 100%);
    box-shadow: 0 25px 50px -12px rgba(0, 211, 242, 0.50);
    border-radius: 10px;
    max-width: 100%;
    display: flex;
    width: auto;
    height: auto;
    padding: 36px;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
}
.scores{
    display: flex;
    flex-direction: column;
    gap:16px;
}
.game{
    border: 4px solid #00D3F2;
    background: linear-gradient(135deg, #59168B 0%, #1C398E 100%);
    box-shadow: 0 25px 50px -12px rgba(0, 211, 242, 0.50);
    border-radius: 10px;
    max-width: 100%;
    display: flex;
    width: auto;
    height: auto;
    padding: 36px;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
}
.title{
    display: flex;
    height: 50px;
    padding-right: 0;
    justify-content: space-between;
    align-items: center;
    width: 100%;

}
.title h1{
    font-size: 24px;
    color:#fff;
}
.title button{
    width: 50px;
    height: 50px;
    border: 2px solid #FFA2A2;
    background: #FB2C36;
}
.level{
    color:#fff;
    border: 4px solid rgba(255, 255, 255, 0.30);
    background: rgba(255, 255, 255, 0.10);
    display: flex;
    padding: 28px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.levels{
    gap: 16px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

