/* Page Setup */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: Verdana, sans-serif;
  background-color: #ffffff;
}

.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 5%;
}

/* Text Styling */

.heading-text {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: bold;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #022A55; 
  line-height: 2.2rem;
  text-align: center;
}

.body-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2rem;
  color: #546E87;
  margin-bottom: 2rem;
}

/* Button styling */
.button {
  display: inline-block;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  padding: 10px 25px;
  border-radius: 25px;
  color: #ffffff;
  background-color: #022A55;
  transition: all 0.2s ease; /* smooth hover effect */
}

.button:hover {
  background-color: #022A55;
  transform: translateY(-2px);
  opacity: 80%;
}