@import url("https://fonts.googleapis.com/css2?family=Playwrite+DE+SAS:wght@100..400&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.main {
  width: 100vw;
  height: 100vh;
  background-color: #00008b;
  display: flex;
  justify-content: center;
  align-items: center;
}
button {
  padding: 10px 20px;
}

.main h1 {
  font-family: "Playwrite DE SAS", cursive;
}
.modal {
  display: none;
}

form {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

form input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form input:focus {
  outline: none;
  border-color: #000066;
  box-shadow: 0 0 5px rgba(0, 0, 139, 0.5);
}

.submit-button {
  padding: 10px 20px;
  background-color: #000066;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
