.main-container {

  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0rem 2rem;
  text-align: center;
  margin-bottom: 5.5rem;
}

.content h1 {
  font-size: 4.5rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.content p {
  font-size: 1.5rem;
  font-weight: 400;
  color: #E2E2E2;
  margin-bottom: 1.5rem;
}

.content button {
  padding: 1.56rem 3.31rem;
  background: #87CEFA;
  color: #001F3F;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.5rem;
  line-height: 1.5rem;
  cursor: pointer;
  transition: background 0.5s ease;
}

.content button:hover {
  background: #001F3F;
  color: #87CEFA;
}







@media (max-width: 1024px) {

  .content button {
    padding: 1rem 2.125rem;
    font-size: 1rem;
    line-height: 1.5rem;
  }

}

@media (max-width: 768px) {

  .main-container {
    margin-top: 2rem;
    align-items: start;
  }

  .content {
    margin-top: 2rem;
  }

}