@font-face {
  font-family: "Hanken Grotesk";
  src: url("fonts/HankenGrotesk-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Omes";
  src: url("fonts/Omnes-Bold.ttf") format("truetype");
}

body {
  margin: 0;
  background-image: url("./src/images/foam.png");
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
  max-height: 100vh;
  height: 100vh;
}

a {
  color: #111111;
}

h2 {
  font-family: "Omes", sans-serif;
  color: #033572;
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

p {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 1.25rem;
  text-align: center;
  color: #111111;
  margin: 0;
  max-width: 600px;
}

.content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  padding: 20px;
}

img {
  margin-top: 2rem;
  margin-bottom: 2rem;
  width: 250px;
}

@media (max-width: 768px) {
  h2 {
    font-size: 1.5rem;
  }

  p {
    font-size: 1.1rem;
  }

  img {
    width: 200px;
  }
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 400px;
  margin-top: 2rem;
}

form input {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  box-sizing: border-box;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #111111;
  background-color: #f9f9f9;
  transition: border-color 0.3s ease;
}
form input:focus {
  border-color: #033572;
  outline: none;
}

form button {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  background-color: #033572;
  color: white;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
form button:hover {
  background-color: #2a5a94;
}