body {
    margin: 0;
    padding: 0;
    font-family: cursive;
    background-size: cover;
    background-color: #0b0b0b;
  }
  
  header {
    background-color: rgba(0, 0, 0, 0);
    color: #fff;
    padding: 20px;
    text-align: center;
    font-size: 50px;
    font-weight: bold;
    text-shadow: 2px 2px #000;
  }
  
  nav {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 10px;
    text-align: center;
    font-size: 25px;
    font-weight: bold;
    text-shadow: 1px 1px #000;
  }
  
  nav a {
    text-decoration: none;
    color: #fff;
    padding: 10px;
  }
  
  nav a:hover {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
  }
  
  section {
    padding: 50px;
    text-align: center;
    font-size: 35px;
    line-height: 1.5;
    color: #fff;
    text-shadow: 2px 2px #000;
  }
  
  footer {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 20px;
    text-align: center;
    font-size: 20px;
    text-shadow: 1px 1px #000;
  }
  
  iframe {
    width: 100%;
    height: 900px;
    margin-top: 50px;
  }
  .input {
    font-family: cursive;
    color: #fff;
    font-size: 1.2rem;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    background-color: transparent;
    width: 90%;
    height: auto;
    display: block;
    transition: all 0.3s;
    border-radius: 15px;
    box-shadow: 0 0 10px black, 0 0 20px black;
    border: 2px solid transparent;
  }
  
  .input:placeholder-shown+.fl {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-4rem);
    transform: translateY(-4rem);
  }
  input:focus {
    outline: none; /* Removes the outline or border */
  }

  
  h2 {
    font-weight: bold;
    text-align: center;
    color: white;
  }
  button {
    background: linear-gradient(to bottom, #4da6ff, #ffffff); 
    color: #000; 
    font-weight: bold; 
    padding: 10px 20px; 
    border: none; 
    border-radius: 5px; 
    box-shadow: 2px 2px 5px rgba(0,0,1,0.3); 
    cursor: pointer; 
    font-family: 'Pacifico', cursive; 
    height: auto; 
    width: auto;
    display: inline-block;
    margin-bottom: 25px;
    margin-left: 15px
  }
  
  div {
    text-align: center;
  }
  .box {
    z-index: 5;
    background: rgba(35, 37, 36, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    -moz-backdrop-filter: blur(8px);
    -ms-backdrop-filter: blur(8px);
    -webkit-box-shadow: 0 0 50px -5px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0 0 50px -5px rgba(0, 0, 0, 0.75);
    box-shadow: 0 0 10px black, 0 0 20px black;
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: white;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 15px;
  }
  .box:hover {
    box-shadow: 0 0 10px white, 0 0 20px black;
  }
