.container {
  padding: 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container > div {
  flex: 1 1 0;
  width: 0;
  justify-content: center;
  align-items: center;
  display: flex;
  height: 100%;
}

.andrew-img {
  max-width: 80%;
  max-height: 80%;
}

.container-text {
  text-align: center;
}

.container-text > span {
  font-size: 18px;
}

.mailing-list {
  font-size: 14px !important;
}

#emailForm {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

#submitForm {
  display: flex;
  align-items: center;
  gap: 5px;
}

#loader {
  border: 2px solid #f3f3f3; /* Light grey */
  border-top: 2px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 10px;
  height: 10px;
  animation: spin 1s linear infinite;
}

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