body{
    background-color: #212121;
    color: #ffff;
    text-align: center;
    font-family: 'Roboto', sans-serif;
  }

img{
    width: 80%;
    height: auto;
}
.playerbox{
    display: inline-block;
    width: 30%;
    height: auto;
}

#cards{
    display: block;
    width: 100%;
}

#card{
    width: 80%;
}


button, input{
    width: 80%;
    height: 60px;
    font-size: 1em;
    text-align: center;
    padding: 0.5em;
    border-radius: 1em;
    font-family: sans-serif;
    font-size: inherit;
    color: #fff; 
    background: rgba(255, 255, 255, 0.1);
    transition: 200ms;
    padding-inline: 3px;
    padding-top: auto;
    padding-bottom: auto;
    border-color: #fff;
    border: solid #fff 1px;
    
    display: inline-block;
   -moz-box-sizing: content-box; 
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
  }

a{color: #fff;}

 button:hover{
    transition: 200ms;
    background: rgb(70, 104, 255);
    opacity: 1;
    cursor: pointer;
  }
  
