body{
    background-color: aliceblue;
    font-family: 'Rubik', sans-serif;
}
input{
    height: 30px;
    border: 2px solid black;
}
.container{
    display: grid;
    height: 90vh;
    justify-content: center;
    align-content: center;
}
h1{
    text-align: center;
    display: block;
}
footer{
    text-align: center;
}

.login-btn{
    height: 34px;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    font-size: medium;
    background-color: red;
    color: white;
    border: none;
}

.play-btn{
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    font-size: medium;
    background-color: red;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 100%;
    margin: 1px;
    color: white;
    border: none;
}
.navbar a{
    font-size: large;
    text-decoration: none;
    margin: 10px;
}
navbar a:hover{
    color: red;
}
/*Online game*/
#online-game{
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}
#friend-connection{
    display: none;
}

#friend-username-submit{
    height: 34px;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    font-size: medium;
    background-color: red;
    color: white;
    border: none;
}
/*Offline game*/
.choice-btn{
    padding: 20px;
    font-size: 20px;
    font-weight: 500;
    background-color: beige;
    border-radius: 4px;
    margin: 10px;
}

.buttons{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    grid-auto-rows: minmax(100px, auto);
}
#game{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-around;
}

#results{
    font-size: 26px;
    font-weight: 500;
    text-align: center;
    margin: 20px;
}
#wins{
    color: green;
}
#loses{
    color: red;
}
.stats{
    font-size: 16px;
    text-align: center;
}
.stats span{
    font-weight: bold;
}
@media screen and (max-width: 600px) {
    .choice_btn {
        font-size: 14px;
      flex-grow: 1fr;
    }
    .buttons{
        display: flex;
        flex-direction: column;
    }
    .stats{
        font-size: 14px;
        text-align: center;
    }
    span.phone::after{ content: '\A'; white-space: pre;}
    #root{
        max-width: 90vw;
    }
  }