body {
  background-color: #f39200;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header img {
  max-width: 100%;
  height: auto;
  margin: 40px;
}

#centerImage {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

.container {
  font-family: "Roboto";
  font-size: 19px;
  font-weight: normal;
  color: #ffffff;
  max-width: 1146px;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-family: "Roboto";
  font-size: 100%;
  color: white;
  margin: 0;
  line-height: auto;
}

h1 {
  font-size: 160px;
  margin-bottom: 40px;
  line-height: 160px;
  font-weight: normal;
}

h2 {
  font-family: "Roboto";
  font-size: 45px;
  font-weight: 300;
  margin-bottom: 70px;
  width: 60%;
  margin: auto; /* centers the text if the container is set to text-align: center */
}

h3 {
  font-size: 35px;
  font-weight: 300;
  margin-bottom: 50px;
  width: 60%;
  margin: auto; /* centers the text if the container is set to text-align: center */
}

h4 {
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 40px;
  margin: auto; /* centers the text if the container is set to text-align: center */
}

h5 {
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 30px;
  margin: auto; /* centers the text if the container is set to text-align: center */
}

h6 {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 20px;
  margin: auto; /* centers the text if the container is set to text-align: center */
}

.belowImage {
  color: #01438e !important;
  margin-top: 50px;
  display: flex;
  flex-direction: row; /* Align items in a row for desktop */
  align-items: center;
  justify-content: center; /* Center items horizontally */
  flex-wrap: wrap; /* Wrap items to new row if necessary */
}

.link-container:not(:last-child)::after {
  content: "|"; /* Add divider after each link container except the last one */
  font-size: 50px;
  font-weight: normal;
  margin: 0 20px; /* Add some horizontal space around the divider */
}

.link-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.icon {
  margin: 0 !important;
  width: 30px;
  transition: transform 0.5s;
  margin-right: 10px !important;
}

.link-container:hover .icon {
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.icon:hover {
  animation: spin 2s linear infinite;
}

/* Link decoration */

a {
  text-decoration: none;
  font-weight: 500;
  font-size: 30px;
  color: #01438e;
}

a:visited {
  color: #01438e;
}

a:hover {
  text-decoration: underline;
}

a:active {
  color: #01438e;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
  h1 {
    font-size: 80px;
    line-height: 80px;
  }
  h2 {
    font-size: 40px;
    width: 80%;
  }
  h3 {
    font-size: 20px;
  }
  .belowImage {
    flex-direction: column; /* Align items in a column for mobile */
  }

  .link-container:not(:last-child)::after {
    content: ""; /* Remove divider for mobile */
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 50px;
    line-height: 50px;
  }
  h2 {
    font-size: 30px;
    width: 80%;
  }
  h3 {
    font-size: 20px;
    margin: 1px !important;
  }
}