html {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: hsl(0, 0%, 0%);
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background-color: hsl(0, 0%, 0%);
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}



h1{
    color: hsl(199, 92%, 61%);
} 

form {
  background-color: hsl(0, 0%, 11%);
  text-align: center;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 5px 5px 15px hsla(0, 0%, 0%, 0.31);
  position: relative;
  z-index: 2;
} 

#particles-js {
    position: fixed;
    top: 0; 
    left: 0; 
    width: 100%;
    height: 100%; 
    z-index: 0;
}   


#textBox{
    width: 50%;
    text-align: center;
    font-size: 1em;
    border: 2px solid   hsla(0, 0%, 0%, 0.811);
    border-radius: 20px;
    margin-bottom: 15px; 
    padding: 10px 15px;
} 

label{
    font-size: 1.5em;
    font-weight: bold;
} 

button {
  margin-top: 15px;
  background-color: hsl(199, 92%, 61%);
  color: black;
  font-size: 1.5em;
  border: none;
  padding: 10px 15px;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: hsl(199, 92%, 75%);
}


#result {
  font-size: 1em;
  color: hsl(199, 92%, 61%);
  font-weight: normal;
  text-align: center;
  margin-top: 20px;
  padding: 15px;
  background-color: hsl(0, 0%, 11%);
  border-radius: 10px;
  box-shadow: 2px 2px 8px hsla(0, 0%, 0%, 0.3);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1em;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: hsl(0, 3%, 6%);
    color: white;
    padding: 10px 30px;
    height: 80px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
  }
  

  .navbar nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-right: 100px;
    padding: 0;
  }
  
  .navbar nav ul li a {
    text-decoration: none;
    color: hsl(199, 92%, 61%);
    font-weight: bold;
  }
  
  .navbar nav ul li a:hover {
    color: hsl(199, 92%, 75%);
  }
  
  .container {
    padding-top: 120px; /* Push page content below the fixed navbar */
  }
  
  .logo-title{
    display: flex;
    align-items: center; 
    color: hsl(199, 92%, 61%);
    animation: transition 1s ease-in-out forwards;
  }   

  .logo-title img {
    animation: transition 1s ease-in-out forwards, waveMotion 2s ease-in-out infinite;
  }
  

  #stationSelect {
    width: 70%;
    padding: 10px;
    font-size: 1em;
    border-radius: 10px;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
    background-color: hsl(0, 0%, 24%);
    color: hsl(0, 0%, 100%);
    border: 2px solid hsla(0, 0%, 0%, 0.70);
} 

#caliSelect {
  font-size: 1em;
  color: hsl(0, 0%, 82%);
}



  @keyframes transition {
    from{
        transform: translateX(-30px);
        opacity: 0;
    } 

    to{
        transform: translateX(0px);
        opacity: 1;
    }
} 

@keyframes waveMotion {
  0%   { transform: translateX(0); }
  50%  { transform: translateX(10px); }
  100% { transform: translateX(0); }
}
