

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&family=Ubuntu:wght@300&display=swap');

*{
    margin: 0;
    padding: 0;
}
nav{
    padding: 3rem;
}
nav img:hover{
    transform: scale(1.2);
}
body{
    background: #15bdae;
}
#content{
    display: flex;
    align-items: center;
    justify-content: center;
}
h1{
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 1rem;

    font-family: Open Sans;
    color: black;
}
h2{
    text-align: center;
    margin-top: 2rem;

    font-family: Open Sans;
    color:  #545454;
}

#title::after{
    content: '';
    display: block;
    width: 300px;
    height: 3px;
    background:  #545454;
    margin: 1rem auto 2rem;  
}
.game{
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 1rem;
}

.game button{
    padding: 5rem;

    width: 50px;
    height: 50px;

    cursor: pointer;

    color: #545454;
    background:  #0da191;
}

#end{
    position: absolute;
    bottom: 1rem;
    left: 0;
    width: 100vw;
    border: 3px solid #545454;
    background:  #0da191;
}
.hidden{
   display: none;
}
.info{
   display: flex;
   align-items: center;
   justify-content: center;
}
.info button{
  border: none;
  margin-left: 3rem;
  background:  #0da191;

  cursor: pointer;
}

.info img:hover{
    transform: scale(1.2);
}

@media(max-width: 700px){

    .game button{
        padding:2rem;
        
        cursor: pointer;
    
        color: #545454;
        background: #0da191;
    }
    nav{
    padding: 2rem;
}
}