 @import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&display=swap');


 html {
     min-height: 100%;
     position: relative;
 }

 body {
     font-family: 'Amatic SC', cursive;
     margin: 0;
     letter-spacing: 2px;
     text-align: center;
     margin-bottom: 170px;
 }

 /*header*/
 header {
     text-align: center;
     font-size: 30px;
     border-bottom: 5px black solid;
     line-height: 0%;
     text-size-adjust: absolute;
     width: auto;
 }
 @media screen and (max-width: 400px) {
    header{
     font-size: medium;
    }
    
  }


 /* game area styling */
 .game-area {
     width: 75%;
     margin-left: auto;
     margin-right: auto;
     margin-top: 1px;
     text-align: center;
     font-size: 200%;
     margin-bottom: 5px;
     font-weight: bolder;

 }

 .game-body {
     padding-bottom: 300px;
 }

 .control {

     display: inline-block;
     width: 100px;
     height: 60px;
     border-radius: 0%;
     font-size: 70%;
     font-family: 'Amatic SC', cursive;
     font-weight: bolder;
     letter-spacing: 2px;
 }

 #messages {
     font-size: 35px;
     font-weight: bolder;
 }

 .player {
     margin-left: 5%;
     float: left;
     width: 40%;
     border-style: solid;

 }

 #player-image {
     width: 59%;

 }

 #player-scores {
     font-size: 150%;
     padding-left: 10%;
 }

 .computer {
     margin-right: 5%;
     float: right;
     width: 40%;
     border-style: solid;

 }


 #computer-image {
     width: 59%;

 }

 #computer-scores {
     font-size: 150%;
     padding-left: 10%;
 }

 .scores {
     font-size: 200%;
     font-weight: bolder;
     text-align: left;
     margin-left: 10%;
 }

 /*Styling of the footer area */
 footer {

     position: relative;
     width: 100%;
     height: 150px;
     left: 0;
     bottom: 0;
     font-size: xx-large;
     padding-top: 11%;

 }

 #github {
     float: left;
     margin-left: 20px;
     font-size: 25px;

 }

 #website {
     float: right;
     margin-right: 20px;
     font-size: 25px;
 }