body {
  font-family: Calibri, sans-serif;
  text-align: center;
  color: #fffffb;
  background-color: black;
  padding: 20px;
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center; /* Centers vertically */
  min-height: 90vh; /* Ensures the body takes full viewport height */
  margin: 0; /* Removes default browser margins */
}

a:link {
  color: #2c8a5f;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: #16d881;
  background-color: transparent;
  text-decoration: underline;
}

a:hover {
  color: #16d881;
  background-color: transparent;
  text-decoration: underline;
}

input[type="text"] {
  border-radius: 25px;
  border: 1px solid #000000;
  color: #fffffb;
  width: 250px;
  background-color: #99c24d;
  height: 30px;
  padding-left: 10px;
}

.text1 {
  display: inline-block;
  vertical-align: top;
}

.bigdiv {
  border: solid 8px #175e09;
  background-color: #2f2d2e;
  padding: 30px 32px;
  border-radius: 100px;
  width: min(560px, 92vw);
  box-sizing: border-box;
  min-height: 60vh;
  height: auto;

  display: flex;
  flex-direction: column; /* change this */
  align-items: center;
  justify-content: center;
}


h1 {
  color: #0056b3;
}

h2 {
  margin: 0 0 10px 0;
}

p {
  font-size: 1.2em;
}
.button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  width: 100%;
  box-sizing: border-box;
  font-size: 16px;
  cursor: pointer;
  border-radius: 25px;
  border: none;
  color: #fffffb;
  transition: all 0.3s ease;
  min-height: 70px;
}

.button1 {
  background-color: #175e09;
}

.button2 {
  background-color: #095e50;
}
.button2:hover {
  background-color: #047ca0;
  transform: scale(1.05);
}

.button1:hover {
  background-color: #0d3d05;
  transform: scale(1.05);
}

.title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  height: 100%;
  width: 100%;
}

.site-credit {
  margin-top: auto;
  margin-bottom: 0;
  font-size: 14px;
}

@media (max-width: 768px) {
  .bigdiv {
    width: 100%;
    min-height: auto;
    border-radius: 32px;
    padding: 20px 14px;
  }

  .button {
    min-height: 56px;
    font-size: 15px;
    padding: 12px 14px;
  }

  h2 {
    font-size: 1.15rem;
  }
}
