body {
  margin: 0;
  padding: 0;
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #2D47DA;
  color: #fff !important;
  min-height: 100vh; /* Ensure full height */
  flex-direction: column; /* Stack flex items vertically */
  gap: 2rem; /* Add gap between flex items */
}

h1 {
    font-size: 6rem;
}

.logo {
  margin-top: 0; /* Reset the margin-top as flexbox will center it */
  width: 12em;
  height: auto;
}

#upload {
    background-color: #fff;
    border: none;
    color: black;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 20px;

    /* bold font */
    font-weight: bold;
    font-size: 1.2rem;
  }

  #button {
    margin-top: 0; /* Reset the margin-top as flexbox will center it */
}