* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

p {
  color: #1b3a57;
  font-size: 2rem;
  font-weight: 500;
  font-family: tienne-black;
}

body,
html {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  background-color: #dcd2c8;
  margin: auto;
}

.center-container {
  text-align: center;
  max-width: 600px; /* Limits container width on larger screens */
  width: 100%;
  padding: 20px;
}

.logo,
.text-image {
  max-width: 60%;
  height: auto;
  margin-bottom: 20px; /* Adjusts spacing between the two images */
}

/* Media query for mobile devices */
@media (max-width: 768px) {
  .center-container {
    padding: 10px; /* Adjusts padding for smaller screens */
  }

  .logo {
    max-width: 60%; /* Reduces image size slightly on mobile */
    margin-bottom: 15px;
  }
  .text-image {
    max-width: 90%; /* Reduces image size slightly on mobile */
  }
}
