@import url("https://fonts.googleapis.com/css2?family=Krona+One&family=Lacquer&display=swap");

body {
  font-family: "Krona One", serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100vh;
  margin-left: 5rem;
  margin-right: 5rem;
}

.background-img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.NartanMenu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 5rem;
  padding: 0;
}

.NartanMenu li {
  list-style-type: none;
}

.NartanMenu a {
  font-size: 25px;
  color: white;
  text-decoration: none;
  font-family: "Krona One", serif;
}

.main-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-form {
  background: #fff;
  padding: 20px 30px;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form h2 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #333;
  text-align: center;
  font-family: "Krona One", serif;
  text-transform: uppercase;
}

.contact-form .form-group {
  margin-bottom: 2rem;
  margin-right: 1.5rem;
}

.contact-form label {
  display: block;
  font-size: 14px;
  color: #555;
  margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

.contact-form textarea {
  resize: none;
  height: 100px;
}

.contact-form button {
  width: 100%;
  padding: 10px;
  background: #000000;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-bottom: 1.5rem;
}

.contact-form button:hover {
  background: #ffffff;
  color: black;
  border: solid 1px black;
}

button {
  font-family: "Krona One", serif;
}

li a::after {
  display: block;
  content: "";
  width: 100%;
  height: 3px;
  background: white;
  transform: scale(0);
  transition: transform 0.2s ease-in-out;
}

li a:hover::after {
  transform: scale(1);
}

li ul {
  padding: 0;
}

@media (max-width: 720px) {
  body {
    margin: 5px;
    font-family: "Krona One", serif;
    height: 100vh;
  }

  .NartanMenu {
    margin-left: 5px;
    margin-top: 15px;
    margin-right: 5px;
  }

  .NartanMenu a {
    font-size: 15px;
  }

  .contact-form {
    margin-left: 20px;
    margin-right: 20px;
  }

  .form-group {
    margin-right: 25px;
  }
}
