@import url('https://fonts.googleapis.com/css2?family=Epunda+Slab:ital,wght@0,300..900;1,300..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
*,
*::before,
*::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family:'Epunda Slab',sans-serif;
    height:100vh;
    color: fuchsia;
    background-color: antiquewhite;
}

h1{
    text-align: center;
}

.container{
    width: 80%;
    min-height: 90%;
    margin: 0 auto;
    background-color: #ccc;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}
.left{
    transform:rotate(90deg) scaleX(-1)  ;
    font-size: 2em;
}
.right{ 
    transform: rotate( -90deg);
    font-size: 2em;
}
.score,
.output{
    display: flex;
    gap: 5rem;
    font-size:3em;
    
}
.winnerAnnounce{
    font-size: 2em;
}
.rps{
    display: flex;
    justify-content: stretch;
    align-items: stretch;
    gap: 10rem;
}

.btn{
    width: 150px;
    height: 50px;
    font-family:'Epunda Slab',sans-serif;
    font-size: 2em;
    border-radius: 0.5em;
    color: #fff;
    border-color: #ffc600;
    box-shadow: 0 0 1rem #ffc600;
    background-color: #40E0D0;
}
button:hover,
button:focus{
    cursor: pointer;
}
.pop-up{
    height: 6rem;
    width: 20rem;
    background-color: aqua;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    
}
.btns{
    width: 4em;
    height: 1.2em;
    border-radius: 2px;
    font-size: 1em;
    background-color: #4682B4;
    color: #D3D3D3;
}
.game{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.emoji{
    font-size: 4rem;
}
img{
    width: 40px;
    height: 40px;
    margin-left: auto;

}
footer{
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 1.5rem;
}