body{
    background-color: #191a1b;
    height: 100vh;
}

h1,p{
    text-align: center;
    color: beige;
}

p{
    display: none;
}

#scale{
    display: block;
    margin: 16px auto;
    padding: 8px 16px;
    background-color: crimson;
    border: 1px solid chartreuse;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
}

#grid-container{
    margin: 0 auto;
    width: 600px;
    height: 600px;
    border: solid 2px chartreuse;
    display:flex;
    flex-wrap: wrap;
    justify-content:space-evenly;
    gap: 1px;

}

.grid-square{
    background-color:crimson;
}

#scale:hover + p{
    display: block;
}

.attribution{
    text-align: center;
    margin: 10px auto;
    color: beige;
}

a{
    text-decoration: none;
    color: chartreuse;
}

@media screen and (max-width: 600px) {
    #grid-container{
        width: 375px;
        height: 600px;
        touch-action: none;
    }

    h1{
        font-size: 24px;
    }
    
}