@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Roboto:ital,wght@0,100;1,100&family=Rubik:wght@300&display=swap');
*{
    margin: 0;
    padding:0 ;
    box-sizing: border-box;
}
body{
    font-family: 'Montserrat', sans-serif;
    background-color: rgb(26,42,50);
}
main{
width: 100vw;
height: 100vh;
display: grid;
place-items: center;

}
.img-o{
    width: 2.1875rem;
    height: 2.1875rem;
}
.img-x{
    width: 2rem;
    height: 2rem;

}
.img-play{
    width: 35px;
    height: 35px;
}
.flex{
    display: flex;
}
.item-center{
    align-items: center;
}
.justify-between{
    justify-content: space-between;
}
#container{
   

}
#nav{
padding: 1rem 1rem ;
}
#nav img{
 width: 1.25rem;   
 height: 1.25rem;
}
#turn{
    padding: 0.5rem 1.35rem;
    font-weight: 800;
    color: white;
    background-color: rgb(32,54,64);
    border-radius: 1rem;
    border: none;
    box-shadow: 0px 15px 16px 0px rgba(0,0,0,0.75);
    
}
#return{
    padding: 0.5rem;
    background-color: #c4c4c4;
    border-radius: 0.8rem;
}
#btn-container{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    place-items:center;
    gap: 1.5rem ;
}

.btn-play {
    width: 7.5rem;
    height: 7.5rem;
    display: grid;
    place-items: center;
    background-color: rgb(32,54,64); 
    border-radius: 12px;
    box-shadow: 0px 15px 16px 0px rgba(0,0,0,0.75);

}
.result {
  padding: 0.6rem 1.2rem;
  border: 1px salmon; 
  border-radius: 12px;
  width: 7.5rem; 
  text-align: center;

}
.result h5{
  text-transform: uppercase;  
  font-weight: 600;
}
#first-result{
background-color:rgb(59,195,190);
}
#second-result{
background-color: rgb(169,191,201);
}
#third-result{
background-color:rgb(241,176,69);
}
@media screen and (max-with: 500px){
    #container {
    padding: 2rem;
    }
}
.btn-play{
    width: 5.5em; ;
    height: 5.5rem;

}  
.result{
    width: 5.5em; ;
    height: 0.5rem 1rem;  
}
.result h5{
font-size: .8rem;
}