body{
    background-color : white;
    display:flex;
    justify-content:center;   

}

.content{
    width: 400px;
    max-width: 97vw;
    display:flex;
    flex-direction: column;
    justify-content:center;
    align-items:center;
}


.inputspace{

    display:grid;
    grid-template-rows: (2, 50%);
    position : relative;
    z-index : 3;
    width: 100%;


}

#your-guess{
    font-size : 35px;
    font-family : arial;
    text-align : left;
    color : rgb(105, 89, 74);

}



#get-input{ /* contains the input field and go button */
    
    display : flex;
   
    justify-content: space-around;
    
}

#guess {
    text-align : center;
    text-transform : uppercase;
    letter-spacing : 0.5em;
    font-size : 25px;
    background-color : rgba(0,0,0,0);
    color : rgb(100,100,100);
    width: 330px;
    outline : none;

}

#go-button{
   border-radius : 50%;
   width : 50px;
   height : 50px;
   font-size: auto;
   background-color: rgba(200,200,200,0.4);
   
}



#board {

    display : grid;
    grid-template-rows : repeat(6,16.5%);
    width:100%;
    height: 480px;
    position: relative;
    margin-top : 4vh;
}

.row {
    display :grid;
    grid-template-columns: repeat(5,20%);
    justify-content : center;
    
}

.tile {
    background-color : rgba(179, 187, 229, 0.8);

    display : grid;
    justify-items : center;
    align-items : center;
    margin : 5px 5px 5px 5px;
}

.alp {
    font-family : serif;
    color : white;
    text-transform : uppercase;
    font-size : 40px;
}

#modal{
    position : fixed;
    top : 30%;
    left : 50%;
    transform : translate(-50%, -50%);
    display : none;
    max-width : 80%;
    width : 300px;
    padding : 20px 20px 20px 20px;

    z-index : 10;
    background-color : beige;
    border : 1px dashed palevioletred;
    border-radius : 10px;
    

}

#modaltxt{
    color : black;
}


#back-button, #more-button {
    margin: 5px 5px 5px 5px;

}

a{
    color : palevioletred;
}

#overlay{
    background-color : rgba(0,0,0,0.5);
    position : fixed;
    top : 0;
    left : 0;
    bottom :0;
    right : 0;
    z-index : 8;
    display: none;

}

@media screen and (max-width: 500px) {

    #guess{
        font-size: 27px;
        width: 75vw;
    }
    #go-button{
        width: 15vw;
        height: 15vw;
    
    }

  }