/* Import Roboto from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

/* Define Elianto font */
@font-face {
    font-family: 'Elianto';
    src: url('./fonts/Elianto-Regular.otf') format('opentype'),
         url('./fonts/Elianto-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Typography styles */
h1, h2 {
    font-family: 'Elianto', sans-serif;
}

p {
    font-family: 'Roboto', sans-serif;
}

/* General Reset */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background: url('assets/mishmash-back.svg');
  background-size: cover;
  background-repeat: no-repeat;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  display: block;
  text-align: center;
  color: #333;
  padding: 4vw 6vw;
  margin-top: -15%;
  background: #fff;
}


.logo p {
  margin-top: 5px;
  margin-bottom: 140px;
  font-size: 1rem;
  color: #555;
}

.content h1 {
  display: block;
  font-size: 3.5rem;
  margin: 20px 0 70px 0;
  color: #2E2E8A; /* Match to the Figma text color */
}

.content h2 {
  display: block;
  font-size: 2rem;
  color: #E07A5F; /* Match to the Figma text color */
}

p {
  color: #000;
  font-size: 12px;
}

footer {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.9rem;
  color: #999;
  padding-bottom: 10px;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .container {
    padding: 1vw 2vw;
  }
  .content h1 {
      font-size: 2.5rem; /* Smaller font size for mobile */
      padding: 0 10%;
  }

  .content h2 {
      font-size: 1.5rem; /* Smaller font size for mobile */
  }

  p {
      font-size: 10px; /* Adjust paragraph font size if needed */
  }

  .logo p {
      margin-bottom: 60px; /* Adjust spacing for mobile */
  }
}
