@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');
body {
 

  font-family: 'Roboto Mono', sans-serif;

  
  height: 100vh;
  margin: 0;
  background-image: linear-gradient(to bottom right, rgb(25, 22, 51), rgb(16, 2, 34));
  background-size: 800% 800%;
  animation: gradientFlow 5s ease infinite;
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}






#date {
     position: fixed;
     color: transparent;              /* make inside invisible */
  -webkit-text-stroke: 1px rgb(231, 231, 231);  /* outline thickness + color */
    right: 3px;
    font-size: 40px;
    top: 91vh;
}

#time {
    position: fixed;
     color: transparent;              /* make inside invisible */
  -webkit-text-stroke: 1px rgb(231, 231, 231);  /* outline thickness + color */
    left: 3px;
    font-size: 40px;
    top: 91vh;
}

#icecream {
  display: block;
  margin: 100px auto 0 auto;
  margin-top: 10%;
  height: 40vh;
  opacity: 0.8;

  border-radius: 30%;             /* makes image circular-ish */
  padding: 30px;       /* gap between image and outline */
  border: 3px solid rgb(0, 0, 0);

  opacity: 0.8;
  

}

#icecream:hover {
  animation: spin 2s  linear infinite;
  cursor: pointer;
}
@keyframes spin {
  0% { transform : rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes border {
0% {font-family: Arial, Helvetica, sans-serif;}
20% {font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;}
100% {font-family: 'Courier New', Courier, monospace;}





}

#scary {
    text-align: center;   /* centers text */
    
    font-size: 20px;
    margin-top: 20px;     /* spacing below ice cream */
    color: rgb(0, 0, 0);         /* visible against dark background */
}



nav {
    position: fixed;
    top: 1vh;
    font-size: 50px;
    left: 1vw;
    
}

nav a {
    color: whitesmoke;
    text-decoration: none;
  
}

nav a:hover {
    opacity: 0.6;
}

nav a:not(:last-child)::after {
  content: "|";
  color: white;
  margin-left: 10px;
}



  section {
      padding: 50px 20px;
      border-top: 2px solid #ccc;  /* the line */
      margin-top: 20px;            /* gap so it doesn’t touch top */
    }

    button {
        position: fixed;
        top: 30vh;
        left: 50vw;
        font-family: "Roboto Mono";
        font-size: 60px;
        border-radius: 50px;
        border:solid 3px white;
        color:  white;
        background-color: transparent;
        padding: 30px;
    }
    button:hover {
        opacity: 0.6;
        cursor: pointer;
    }