body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom, #101524, #101525);
    color: #ffffff;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  header {
    background: linear-gradient(to bottom, #273457, #101525);
    width: 100%;
    padding: 20px 0;
    text-align: center;
    color: #fff;
    position: relative;
  }
  
  .logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    animation: levitate 3s ease-in-out infinite;
  }
  
  .rhombus {
    width: 100px;
    height: 100px;
    background-color: cyan;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    z-index: -1; /* Behind the logo */
  }
  
  .circle {
    position: relative;
    width: 120px;
    height: 120px;
    border: 5px solid cyan;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1; /* In front of the rhombus */
  }
  
  .main-logo {
    width: 80px; /* Adjust size as needed */
    height: 80px; /* Adjust size as needed */
  }
  
  .name {
    font-family: 'Great Vibes', cursive;
    font-size: 1.5em;
    color: #4caf50;
    position: absolute;
    top: 130px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
  }
  
  h1 {
    font-family: 'Montserrat', sans-serif;
  }
  
  .intro {
    width: 80%;
    margin: 20px auto;
    padding: 20px;
    background:-o-linear-gradient(#101524);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
  }
  
  .contact-form {
    width: 55%;
    margin: 20px auto;
    padding: 20px;
    background: linear-gradient(to bottom, #1b243f, #101525);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
  }
  
  .contact-form form {
    display: flex;
    flex-direction: column;
  }
  
  .contact-form label {
    margin: 10px 0 5px;
    font-weight: bold;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
  }
  
  .contact-form button[type="submit"] {
    align-self: flex-start;
  }
  
  .red-button {
    background-color: rgb(6, 64, 116);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button {
    background-color: #00ffff;
    border: none;
    padding: 20px;
    cursor: pointer;
    transition: filter 3s ease;
        border-radius: 0;
    
}

button:hover {
    box-shadow: 0 0 5px 1px #006eff;
    transition: filter 3s ease;


}


@keyframes levitate {
  0%, 100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-10px);
  }
}
