* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1 {
  font-size: 3rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
  display: block;
  margin: 2rem 0 1.5rem 0;
  text-shadow: 0 5px 10px rgb(0, 70, 95);
  white-space: normal;
  word-wrap: break-word;
}

h1 a {
  color: inherit;
  text-decoration: none;
}

h2 {
  font-size: 1.5rem;
}

p {
  font-size: 1rem;
}
p a {
  color: rgb(160, 230, 255);
}

strong {
  font-weight: bold;
}

html, body {
  height: 100%;
  font-family: 'Quicksand', sans-serif;
  background: linear-gradient(to bottom, rgb(160, 230, 255), rgb(60, 130, 155));
  overflow-x: hidden;
  position: relative;
}

.container {
  padding: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  color: white;
  z-index: 1;
}

.glass-body {
  background: rgba(255, 255, 255, 0.5);
  border: none;
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 50px rgba(0, 70, 95, 0.5);
  padding: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 1rem;
  box-sizing: border-box;
  overflow: hidden;
}

.nav-links {
  display: flex;
  gap: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 1rem;
  text-shadow: 0 2px 5px rgb(60, 130, 155);
}

.nav-links a:hover {
  text-decoration: underline;
}

.nav-divider {
  border: none;
  border-top: 5px solid white;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.glass-text {
  background-color: rgba(0, 70, 95, 0.3);
  border-radius: 1rem;
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.75);
  color: white;
  line-height: 1.5;
  padding: 1rem;
}

.glass-image {
  max-width: 75%;
  height: auto;
  display: block;
  margin-bottom: 0.5rem;
  border-radius: 1rem;
}

.button {
  width: 120px;
  display: inline-block;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 1rem;
  margin: 1rem 2rem;
  padding: 5px 10px;
  background: linear-gradient(to bottom, rgb(200, 255, 255), rgb(130, 210, 255));
  border: 2px solid white;
  box-shadow: inset 0 0 2px white, 0 2px 5px rgba(0, 0, 0, 0.5);
  color: rgb(60, 130, 155);
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.button:hover {
  background: linear-gradient(to bottom, #e0ffff, #9fe8ff);
  transform: scale(1.1);
  box-shadow: inset 0 1px 2px white, 0 3px 10px rgba(0, 0, 0, 0.5);
}

.button-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 1rem;
  margin-bottom: 1rem;
}

footer {
  margin: 2rem 0 1.5rem 0;
  font-size: 1rem;
  color: white;
  text-shadow: 0 2px 5px rgb(0, 70, 95);
  white-space: normal;
  word-wrap: break-word;
}
