
*{  
    margin:0;
    padding: 0;
    box-sizing: border-box;
    vertical-align: baseline;
font-family: cursive;
}
body{
    text-transform: uppercase;
    background-color: #44756f;
    height:100vh;
}
button{
    background: none;
     padding: auto 0;
    width:50px;
    height:60px;
    border:none;
    font-size: 40px;
    background-color:#7df4dc;
    border-radius: 20px;
}
.btn{
    cursor: pointer;
}
header{
    text-align: center;
    padding:35px;
    font-size: 18px;
    letter-spacing: 4px;
    border: 5px solid #19d4af;
    background-color:#2c3e50;
    color:#41f88d;
}
#main
{   position: relative;
     min-height:30vh;
}

#main .container { 
    display: flex;
    margin: 20px auto;
    flex-wrap: wrap;
    gap:20px;
    justify-content: center;
}
.player,.computer{ 
    border-radius: 20px;
    color:#41f88d; 
    background-color: #2c3e50;
    border: 2px solid #41f88d;
    gap:15px;
    padding:10px 0;
    width:300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}    
.box button{
    margin-right:10px;
}
h1{
    font-size: 25px;
    text-transform: uppercase;
}
h3{
    font-size: 15px;
    text-transform: uppercase;
}
.choice{
    width:50px;
    height:60px;
    border-radius: 20px;
    background-color:#7df4dc;
    text-align: center;
}
.choice span{
    font-size: 40px;
}
#result-box{
    max-width:300px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #41f88d;
    padding:15px;
    background-color: #2c3e50;
    color:#41f88d;   
    margin:0 auto;
}
#result-box .score{
   font-size:50px;
   color: #7df4dc;
}
footer{
    margin-top: 75px;
    height:10vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background-color: #2c3e50;
    color:#41f88d;  
   
}
