
    body {
      font-family: 'Inter', sans-serif;
      margin: 0;
      padding: 0;
      background: url('https://tylersclouds.duckdns.org/apps/theming/image/background?v=13') no-repeat center center fixed;
      background-size: cover;
      color: #fff;
    }
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 40px;
      background-color: rgba(0, 17, 50, 0.959);
      color: #fff;
      box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    }
    .logo {
      display: flex;
      align-items: center;
    }
    .logo img {
        height: 80px;
        margin-right: 10px;
    }
    nav a {
      margin-left: 30px;
      text-decoration: none;
      color: #fff;
      font-weight: 500;
    }
    section {
      padding: 60px 40px;
      background-color: rgba(0, 0, 0, 0.6);
      border-radius: 12px;
      margin: 40px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }
    h1, h2 {
      font-size: 2.5em;
      margin-bottom: 20px;
    }
    p, ul {
      font-size: 1.2em;
      color: #eee;
      margin-bottom: 30px;
    }
    ul li {
      margin-bottom: 10px;
    }
    button {
      background-color: #0070f3;
      color: white;
      border: none;
      padding: 14px 24px;
      border-radius: 8px;
      font-size: 1em;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }
    button:hover{
        background-color: #005ec4;
    }
    nav a:hover{
        text-decoration:underline;
    }
    form label {
      display: block;
      margin-bottom: 10px;
      font-weight: bold;
    }
    form input, form textarea {
      width: 100%;
      padding: 10px;
      margin-bottom: 20px;
      border: none;
      border-radius: 6px;
      font-size: 1em;
    }
    form input[type="submit"] {
      background-color: #0070f3;
      color: white;
      cursor: pointer;
    }
    footer {
        margin-top: auto;
        text-align: center;
        padding: 20px;
        background-color: rgba(0, 9, 50, 0.8);
        color: #ccc;
    }@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .hero-text h1 {
    font-size: 2em;
  }

  .hero-text p, ul, li, button {
    font-size: 1em;
  }

  .logo img {
    height: 40px;
  }

  footer {
    font-size: 0.9em;
  }
}
