body{
    font-family: verdana;
    text-align: center;
}



#clock-container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url(/images/grim_reaper_surfing.PNG);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0;
  }
#clock{
    font-family: monospace;
    font-size: 6.5rem;
    font-weight:bold;
    text-align: center;
    color: white;
    background-color: hsla(0, 0%, 100%, 0.1);
    backdrop-filter: blur(5px);
    width: 100%;
  }


#stopwatchH3{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 4rem;
    font-family: "Arial", sans-serif;
    color: black
  }
#stopwatchContainer{
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 5px solid;
    padding: 30px;
    border-radius: 50px;
    background-color: white;
  }
#stopwatchDisplay{
    font-size: 5rem;
    font-family: monospace;
    font-weight: bold;
    color: black;
    text-shadow: 2px 2px 2px grey;
    margin-bottom: 25px;
  }
#stopwatchControls button{
    font-size: 1.5em;
    font-weight: bold;
    padding: 10px 20px;
    margin: 5px;
    min-width: 125px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    color: white;
    transition: background-color 0.5s ease;
  }
#startBtn{
    background-color: green;
  }
#startBtn:hover{
    background-color: lightgreen;
  }
  
#stopBtn{
    background-color: red;
  }
#stopBtn:hover{
    background-color: pink;
  }
  
#resetBtn2{
    background-color: blue;
  }
#resetBtn2:hover{
    background-color: lightblue;
  }



#calculator{
    font-family: Arial, sans-serif;
    background-color: lightgreen;
    border-radius: 15px;
    border: 1px solid darkgreen;
    max-width: 500px;
    overflow: hidden;
  }
#calcDisplay{
    width: 100%;
    padding: 20px;
    font-size: 5rem;
    text-align: left;
    background-color: white;
  }
#keys{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 25px;
  }

.calcBtn{
    width: 100px;
    height: 100px;
    border-radius: 50px;
    border: none;
    background-color: darkgreen;
    color: white;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
  }
.calcBtn:hover{
    background-color: green;
  }
.calcBtn:active{
    background-color: lightgrey;
  }
.operator-btn{
    width: 100px;
    height: 100px;
    border-radius: 50px;
    border: none;
    background-color: orange;
    color: white;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
  }
.operator-btn:hover{
    background-color: yellow;
  }
.operator-btn:active{
    background-color: lightgrey;
  }




#RPSgame{
    font-size: 3rem;
    color: darkgreen;
  }
.choices{
    margin-bottom: 30px;
  }
.choices button{
    font-size: 6rem;
    min-width: 160px;
    margin: 0 10px;
    border-radius: 500px;
    background-color: green;
    cursor: pointer;
    transition: background-color 0.5s ease;
  }
.choices button:hover{
    background-color: lightgreen;
  }
#playerDisplay, #compDisplay{
    font-size: 1.5rem;
  }
#resultDisplay{
    font-size: 4rem;
  }
.scoreDisplay{
    font-size: 2rem;
  }
.greenText, #playerScoreDisplay{
    color: green;
  }
.redText, #compScoreDisplay{
   color: red;
  }





#myH2{
    color:green;
  }

 #countLabel{
     display:block;
     text-align:center;
     font-size:10em;
     font-family: Helvetica;
   }
 #btnContainer{
     text-align:center;
   }
 .buttons{
     padding: 10px 20px;
     font-size: 1.5em;
     color: white;
     background-color:green;
     border-radius:5px;
     cursor: pointer;
     transition: background-color 0.25s;
   }
 .buttons:hover{
     background-color:lightgreen;
   }
 
 #myButton{
     font-size:3em;
     padding:5px 25px;
     border-radius:5px;
   }
  #myLabel{
      font-size:3em;
    }
      
  
  
  
#tempH3{
    color:darkgreen;
    font-size:25px;
  }
  
#tempForm{
    background-color: lightgreen;
    text-align: center;
    max-width: 350px;
    margin:auto;
    padding:25px;
    border-radius:10px;
    box-shadow: 5px 5px 15px black;
  }
#tempTextBox{
    width: 50%;
    text-align: center;
    font-size: 2em;
    border: 2px solid green;
    border-radius: 4px;
    margin-bottom: 15px;
  }
.tempLabel{
    font-size:1.5em;
    font-weight:bold;
  }
#tempBtn{
    margin-top:15px;
    background-color:green;
    color:white;
    font-size:1.5em;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor:pointer;
  }
#tempBtn:hover{
    background-color:darkgreen;
  }
#tempResult{
    font-size: 1.75em;
    font-weight: bold;
  }
  
  
 #diceContainer{
     text-align:center;
     font-size:2rem;
     font-weight:bold;
   }
 #diceBtn{
    font-size: 1.5rem;
    padding: 10px 15px;
    border-radius: 10px;
    border:none;
    background-color:green;
    color:white;
    font-weight:bold;
    cursor:pointer
   }
  #diceBtn:hover{
      background-color:darkgreen;
    }
  #diceBtn:active{
      background-color:lightgreen;
    }
  #numOfDice{
      font-size: 2rem;
      width:150px;
      text-align:center;
      font-weight:bold;
    }
  #diceResult{
      margin:25px;
    }
  #diceImages img{
      width: 150px;
      margin: 5px;
    }
 
 
 #lenny{
     background-color: grey;
     width: 300px;
     height: 300px;
     font-size: 4.5rem;
     font-weight: bold;
     display: flex;
     align-items: center;
     text-align: center;
     cursor: pointer;
   }
   
  #cat{
      background-color: lightgreen;
      width: 250px;
      height: 250px;
      border-radius: 500px;
      font-size: 3.5rem;
      font-weight: bold;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
    }

  
  
  .randoBtns{
      font-size:4rem;
      margin: 10px;
      border: none;
      border-radius:5px;
      padding: 10px 15px;
      background-color: darkgreen;
      color: white;
      cursor: pointer;
    }
  
  .enabled{
      background-color: darkgreen;
      color: white;
    }
  .hover{
      box-shadow: 0 0 10px black;
      font-weight: bold;
      }
  .disabled{
      color: black;
      background-color:grey;
    }
  
 
 
  .pagination{
      text-align: center;
    }
  .pagination a{
      color:black;
      text-decoration:none;
      padding: 8px 15px;
      display: inline-block;
    }

 .pagination a.active{
   background-color:darkgreen;
   font-weight:bold;
   border-radius:5px;
   }

 .pagination a:hover:not(.active){
    background-color:grey;
    border-radius:5px;
   }