body{
    color: rgb(0, 0, 0);
    font-family:Georgia, 'Times New Roman', Times, serif;
    background-color: aqua;
}

h2{
  font-size: 36px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(45deg, #fc2c77, #06b5ff);
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  border: 2px solid #000000;
}

.guessEntry{
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(45deg, #fc2c77, #06b5ff);
  padding: 10px;
  margin-right: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  border: 2px solid #000000;
}

.navlink {
  background-color: #f1f1f1;
  border: none;
  color: #000000;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.navlink:hover {
  background-color: #d4d4d4;
}

.navlink:active {
  background-color: #b7b7b7;
}

.gameBox {
  background-color: #f1f1f1;
  color: #333;
  padding: 20px;
  text-align: center;
  font-size: 20px;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.plevel{
  display: inline;
  font-size: 24px;
  font-family: 'Arial', sans-serif;
  color: #fff;
  background: linear-gradient(45deg, #fc2c77, #06b5ff);
  padding: 15px 20px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 20px;
  border: 2px solid #000000;
  }

#wordToGuess1, #wordToGuess2, #wordToGuess3, #wordToGuess4{
  font-size: 20px;
  font-family: 'Arial', sans-serif;
  color: #333;
  padding: 100px 20px 70px 20px;
  border-radius: 10px;
  background-image: url('https://external-content.duckduckgo.com/iu/?u=http%3A%2F%2Fimages.clipartpanda.com%2Fcloud-clip-art-rgtaylor_csc_net_wan_cloud.png&f=1&nofb=1&ipt=1c937794209f0ed3ca3cc97993277890d51235fa64fa4b8063ffe9d816b06943&ipo=images.png'); /* Replace 'cloud.png' with your cloud image path */
  background-size: contain; /* Adjust background size */
  background-position: center; /* Center the background image */
  background-repeat: no-repeat; /* Prevent the image from repeating */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Shadow effect */
  margin: 20px;
}

select {
  font-size: 20px;
  font-family: 'Arial', sans-serif;
  color: #fff;
  background: linear-gradient(45deg, #fc5592, #f1a036);
  padding: 15px 20px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 20px;
  padding: 10px;
  background-color: #f79438;
  color: #fff;
  border: 2px solid #000000;
  border-radius: 5px;
}
select:hover{
  background-color: #995b22;
}

button {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #3498DB;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 5px;
  cursor: pointer;
  margin-left: 10px;
  border: 2px solid #000000;
}

nav {
    max-width: 1920px;
    margin: 0 auto;
  }
  
  nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: space-around; /* evenly space the navigation items */
  }
  
  nav ul li {
    padding: 10px;
  }
  
  @media screen and (max-width: 900px) {
    nav {
      max-width: 100%;
    }
  
    nav ul {
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
  }

  #guessingGame, #currencyGame, #cityGame, #flagGame, #populationGame{
    display: none;
  }

  header {
    font-family: 'Arial', sans-serif;
    background: white;
    text-align: center;
    margin: 0px;
    padding: 10px;
    background-color: white;
    border: 2px solid #000000;
    border-radius: 5px;
  }

  .foot{
    font-family: 'Arial', sans-serif;
    background: white;
    display: inline-block;
    margin: 0px;
    padding: 10px;
    background-color: rgb(91, 196, 252);
    border: 2px solid #000000;
    border-radius: 5px;
  }
  
  #title {
    display: inline;
    width: fit-content;
    font-family: "fantasy";
    font-size: 5em;
    background-color: rgb(253, 251, 251);
}
  
    .himage {
        max-width: 10%;
        height: auto;
    }

  @media screen and (max-width: 1920px) {
    #title {
        font-size: 6em; /* Adjust font size for smaller screens */
      }
    .himg {
      max-width: 10%; /* Adjust image size for smaller screens */
    }
  }

  @media screen and (max-width: 1236px) {
    #title {
        font-size: 4em; /* Adjust font size for smaller screens */
      }
    .himg {
      max-width: 10%; /* Adjust image size for smaller screens */
    }
  }

  @media screen and (max-width: 852px) {
    #title {
        font-size: 2em; /* Adjust font size for smaller screens */
      }
    .himg {
      max-width: 10%; /* Adjust image size for smaller screens */
    }
  }