body {
    padding: 0;
    margin: 0;
    text-align: center;
  }
  
  #game-intro {
    padding: 20px 0px;
    background-image: url(../images/Start-screen.jpg);
    background-size: cover;
  }
  
  #game-container {
    display: none;
    width: 100vw;
    padding: 20px 0px;
    justify-content: space-evenly;
    align-items: center;
    background-image: url(../images/Argentina-flag.png);
    background-size: cover;
    background-position: center center;

  }

  .score {
    font-size: 18px;
    font-family: 'Lucida Sans';
    color: #5d9afc;
    border: 2px dotted #5d9afc;
    padding: 10px 30px;
  }
  
  #game-screen {
    display: none;
    align-content: center;
    padding: 20px 35px;
    overflow: hidden;
    position: relative;
    background-image: url(../images/Field.jpg);
    background-size: cover;
  }
  
   
  #game-end {
    display: none;
    background-image: url(../images/End-screen.jpg);
    background-size: cover;
    background-position: center center;
    margin: 0;
  }

  #game-end h1{
    color: white;
    font-family: 'Lucida Sans';
    font-size: 50px;
    margin: 0
  }

   
  #game-intro p {
    font-size: 16px;
    font-family: 'Lucida Sans';
    color: white;
  }

  .instructions {
    border: 3px dotted white;
    border-radius: 10px;
    margin: 0px 500px;    
  }
  
  .logo-img {
    width: 250px;
    margin: 20px;
  }
  
  .arrows-img {
    width: 150px;
    margin-top: 20px;
  }
  
  #start-button {
    font-size: 25px;
    background-color: #12318c;
    color: #fff;
    padding: 15px 30px;
    border: 0;
    box-shadow: 0;
    border-radius: 5px;
    margin-bottom: 20px;
  }

  #restart-button {
    font-size: 30px;
    background-color: #38a17a;
    color: #fff;
    padding: 20px 40px;
    border: 0;
    box-shadow: 0;
    border-radius: 5px;
    margin-top: 10px;
    margin-bottom: 20px;
  }

  #game-over-win {
    display: none;
    border: 3px dotted white;
    border-radius: 10px;
    margin: 0px 500px;
    font-size: 18px;
    font-family: 'Lucida Sans';
    color: white;  
    padding: 40px;
    background-color: #38a17a;
  }

  #game-over-lose {
    display: none;
    border: 3px dotted white;
    border-radius: 10px;
    margin: 0px 500px; 
    font-size: 18px;
    font-family: 'Lucida Sans';
    color: white; 
    padding: 40px;
    background-color: #38a17a;
  }

  #game-end .logo-img{
    width: 100px;
    margin: 10px;
  }

  .messi-happy {
    width: 300px;
    margin: 10px;
  }

  .messi-sad {
    width: 300px;
    margin: 10px;
  }