* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; /* Ensures padding and border are included in the element's total width and height */
}

html, body {
  min-height: 100vh;
  font-family: "Helvetica Neue", Roboto, Arial, sans-serif;
  color: white;
  background: linear-gradient(to bottom, #2473ab 0%, #1e528e 70%, #5b7983 100%);
}

body {
  font-size: 1.5rem;
  display: flex;
  flex-direction: column;
}

h1 {
  font-size: 5rem;
  margin-bottom: 0.5rem;
  font-weight: normal;
}

h2, h3 {
  font-weight: normal;
}

a {
  color: white;
  text-decoration: none;
}

.inlinelink {
  text-decoration: underline;
}

.wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 6rem 0 0; /* Added padding to create space for .website-nav */
}

footer {
  font-size: 1.25rem;
  flex-shrink: 0;
  height: auto;
  border-top: 3px solid white;
  padding: 2rem;
}

.website-nav {
  position: fixed;
  top: 0; /* Ensures nav stays at the top */
  width: 100%;
  height: 6rem; /* Fixed height for .website-nav */
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.75);
  padding: 2rem;
  text-align: center;
  white-space: nowrap; /* Prevents text from breaking into multiple lines */
  font-size: 1.5rem; /* Set initial font size */
}

.website-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.website-nav ul li {
  display: inline;
  padding: 0.5rem 1rem;
  line-height: 21px;
}

.website-nav ul li a {
  font-weight: bold;
}

.message {
  position: relative;
  margin-bottom: 3rem;
  width: 70%;
  left: 70%;
  transform: translateX(-70%);
}

.message .logo {
  margin-right: 0;
  margin-bottom: 1rem;
  text-align: center;
}

.message .logo img {
  width: 80px;
  height: 80px;
}

.message .text {
  float: none;
}

.message h1,h2,h3,p {
  padding-bottom: 1rem;
}

.graphics {
  display: block;
  position: relative;
  margin: 10rem auto 3rem;
}

.graphics .bell svg {
  width: 100%;
  height: auto;
  max-width: 400px;
  max-height: 400px;
}

.page-content {
  padding: 3rem 2rem;
}

.path {
  stroke-dasharray: 4000;
  stroke-dashoffset: 4000;
  animation: dash 5s linear forwards;
}

@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}

/* Media query for screens smaller than 1243px */
@media (max-width: 1243px) {
  body {
    font-size: 2.5rem;
  }
  .message {
    position: relative;
    margin-bottom: 3rem;
    width: 90%;
    left: 90%;
    transform: translateX(-90%);
  }
  .website-nav {
    font-size: 1.5rem;
    height: auto; /* Set height to auto */
    line-height: normal; /* Ensure text takes maximum height */
    overflow-y: auto; /* Allow scrolling if content exceeds height */
  }
}
