.topnav a.wg {
  float: right;
  display: block;
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}
.topnav {
  overflow: hidden;
  background-color: whitesmoke;
  border-bottom: 1px solid black;
  margin-bottom: 34px;
}



.topnav a.active {
  background-color: #ADD8E6;
  color: black;
}

.topnav .icon {
  transition:color  0.25s;
  display: none;
  background-color: #ADD8E6;
  color: white;
}

@media screen and (min-width: 600px) {
  .topnav a {
    float: left;
    display: block;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
  }
  .topnav a:hover {
    background-color: #ddd;
    transition: background-color 0.25s, color  0.25s;
    color: black;
  }
}
@media screen and (max-width: 600px) {

  .topnav a:not(:nth-child(5)) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
  }

  .topnav a {
    display: block;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    align-content: center;
    color: black;
  }

  .topnav a.active {
    position: relative;
    float: none;
    display: block;
    text-align: center;
  }

  .topnav.responsive {position: relative;}
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: center;
  }

  .topnav.responsive a.icon {
    background-color:  whitesmoke;
    color: black;
    transition:color  0.25s;
  }
}
html, body {
    margin:0;
    padding:0;
    height:100%;
 }

  .logo {
    color: white;
    font-size: 17px;
    font-family: Impact, sans-serif;
    padding: 14px 16px;
    width: 50%;
    float: right;  
    display: block;
}

.popupContainer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  justify-content: center;
}

.popupContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #fff;
  max-width: 400px;
  margin: 100px auto;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.closePopup {
  display: flex;
  padding: 14px 16px;
  margin-top: 10px; 
  background-color: #ccc;
  border: 1px solid black;
  border-radius: 3px;
  cursor: pointer;
  background-color: #4CAF50;
}

.buttonContainer {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 10px;

}


#nota-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-weight: bold;
    clear: both;
}

.nota {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 18px;
    height: 40px;
    background-color: #f5f5f5;
    margin-bottom: 15px;
}

.rps {
  margin: 2%;
  min-width: fit-content;
}

.choices {
    width: fit-content;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  
  .opponent {
    min-width: fit-content;
    width: 175px;
    aspect-ratio: 1/1;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    border: 2px solid black;
    padding: 25px; 
    box-sizing: border-box; 
    background-color: #ADD8E6;
  }
  
  
  .opponentChoice {
    padding: 14px 16px;
    font-size: 80px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    flex: 1;
    min-width: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .result {
    margin: 0; 
  }
  
  
  .choice {
    min-width: fit-content;
    width: 20%;
    aspect-ratio: 1/1;
    padding: 14px 16px;
    font-size: 80px;
    background-color: #4CAF50;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    display: flex; 
    justify-content: center;
    align-items: center; 
    border: 1px solid black;
    color: black;
  }

  .reset {
    text-align: center; 
    margin-top: 20px; 
    margin-bottom: 20px;
  }
  
  .reset-btn {
    background-color: #ccc;
    min-width: fit-content;
    font-size: 12px;
    color: black;
    border: 1px solid black;
    cursor: pointer;
  }
  #page-container {
    position: relative;
    min-height: 100vh;
  }
  
  #content-wrap {
    min-height: calc(100 vh - 60px);
    padding-bottom: 60px;
  }
  
  .footer-content {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    height: 100%;
  }
  
  .footer-content p {
    margin: 0;
  }
  
  #footer {
    background-color:#f5f5f5;
    border-top: 1px solid black;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 8%;
    justify-content: center; 
  }

