*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  scroll-behavior: smooth;
}

@font-face {
  font-family: 'Lato';
  src: url('/assets/fonts/Lato-SemiBold.ttf');
}

body {
  background: linear-gradient(180deg, rgba(253,246,227,1) 0%, rgba(255,212,220,1) 100%);
  min-height: 100vh;

  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

a {
  text-decoration: none;
}

header {
  background: #54457F;
  padding: 2.5rem 0;
}

header h1 {
  text-align: center;
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 3rem;
  color: #fff;
  text-shadow: 1px 3px 4px rgba(0, 0, 0, 0.5);
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

button {
  font-family: 'Lato', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 2rem;
  
  padding: 1.5rem 4.75rem;
  border-radius: 1.25rem;
  border: none;
  background: rgba(255, 255, 255, 0.5);

  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: rgba(255, 255, 255, 1);
}
