html {
  font-size: 10px;
  font-family: 'Open Sans', sans-serif;
}


h1 {
  font-size: 60px;
  text-align: center;
}

p, li {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 1px;
}

img {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
    }

h1 {
  margin: 0;
  padding: 20px 0;
  color: #00539F;
  text-shadow: 3px 3px 1px black;
}

img {
  display: block;
  margin: 0 auto;
}

body {
      background-image: linear-gradient(to bottom, #9900ff, #ff00d4);
      font-family: Arial, sans-serif;
      color: #ffffff;
      text-align: center;
      margin: 0;
      display: flex;
      justify-content: center;
      align-items: center; 
      min-height: 100vh; 
    }
    h1 {
      color: #ffc400;
    }

    .container {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      max-width: 650px;
      margin: 40px auto;
      justify-items: center;
    }
    .panel {
      background: rgba(255, 255, 255, 0.3);
      border-radius: 16px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.3);
      padding: 20px;
      width: 100%;
      text-align: left;
    }
    ul {
      background: rgba(255,255,255,0.2);
      border-radius: 12px;
      padding: 16px;
      width: 100%;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
      text-align: left;
      margin: 0;
      list-style-position: inside;
    }
    p {
      font-size: 18px;
      line-height: 1.6;
      margin: 0;
    }
    a {
      color: #0077cc;
      text-decoration: none;
    }
    a:hover {
      text-decoration: underline;