body {
    font-family: 'Poppins', sans-serif;
    background-color: #F5F0E6;
    color: #333333;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}
.container {
    max-width: 600px;
    padding: 2rem 2rem 6rem;
}

.content h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1;
}
.content h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #E2725B;
    margin: 0 auto 1.5rem;
}
.contact {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  color: white;
  text-align: center;
  padding: 10px;
}
.contact a {
    color: #333333;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

@media (min-width: 768px) {
  .content h1 {
    font-size: 3rem;
}
}
