body {
  font-family: Arial, sans-serif;
  background-image: url('https://mcdn.wallpapersafari.com/medium/65/90/cXZVTQ.jpg'); 
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  text-align: center;
  color: #fff;
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  text-align: center;
}

h1 {
  color: #30153d;
  text-decoration: underline;
  margin-top: 20px;
  margin-bottom: 10px;}
  h2 {
    color: #b95757;
    margin-top: 20px;
    margin-bottom: 50px;
}

form {
  max-width: 400px;
  margin: 0 auto;
  padding: 20px;
  margin-top: 40px;
  margin-bottom: 30px;
  border: 1px solid #97d4ac;
  background-color: #77d396;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

input, button {
  margin: 10px;
  
  padding: 10px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 5px;
  transition: border-color 0.3s;
}

input:focus {
  outline: none;
  border-color: #007BFF;
}

button {
  background-color: #007BFF;
  color: rgb(15, 15, 15);
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #0056b3;
}

#confirmation-message {
  font-weight: bold;
  color: #ff0000;
  margin-top: 20px;
}

.loading-indicator {
  display: none;
  text-align: center;
  color: #007BFF;
  font-weight: bold;
}

#background-text {
  position: absolute;
  
  margin-top:120px;
  font-family: Georgia, 'Times New Roman', Times, serif;
  right: 20px;
  font-size: 21px;
  color: #ff0022;}

  /*External Site Link*/
.external-link {
      position: absolute;
      top: 5%;
      right: 20px;
      transform: translateY(-50%);
      font-weight: bold;
  }
  .external-link a {
      color: #0f0f0f;
      text-decoration: underline;
  }
  .external-link a:hover {
      text-decoration: underline;
  }
/*Animated Footer*/
.background {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.socials {
  gap: 20px;
  position: absolute;
  bottom: 0;
  margin-bottom: 20px;
}

.socials a {
  font-size: 24px;
}

.links {
  gap: 10px;
  position: absolute;
  bottom: 0;
  margin-bottom: 60px;
}

.legal {
  font-size: 12px;
  margin: 0;
  bottom: 0;
  margin-bottom: 20px;
}

svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  transform: scaleY(3) scaleX(2.25);
  transform-origin: bottom;
  box-sizing: border-box;
  display: block;
  pointer-events: none;
}

footer {
  position: fixed;
  left: 0;
  bottom: 0;
  display: flex;
  width: 100%;
  height: 300px;
}

section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 30px;
  padding-bottom: 200px;
  padding-left: 60px;
  width: 100%;
}

@media (width > 420px) {
  section {
    align-items: center;
    padding-left: 0;
    gap: 20px;
  }

  .links {
    gap: 20px;
    position: absolute;
    bottom: 0;
    margin-bottom: 60 px;
  }
}

