body {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.modal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 1.2em;
  line-height: 1.5em;
  display: none;
}

.modal .modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 2em;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.modal .close {
  position: absolute;
  top: 0;
  right: 0;
  padding-right: 0.5em;
  cursor: pointer;
  font-size: 2rem;
}

h1 {
  font-size: 1.5em;
  font-weight: bold;
}

h2 {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: -10px;
  margin-top: 2em;
}

img {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

/* Centers the form horizontally */
.form {
  max-width: 600px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  overflow: hidden;
}

.form .input_label {
  display: block;
  font-size: 1.2em;
  padding: 1em 0 0.25em 0;
  box-sizing: border-box;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

/* Keeps the input fitting inside the form */
.form input {
  display: block;
  width: 100%;
  font-size: 1.2em;
  padding: 1em;
  box-sizing: border-box;
}

.form button {
  display: block;
  width: 100%;
  font-size: 1.2em;
  padding: 1em;
  box-sizing: border-box;
  background-color: #4caf50;
  color: white;
  border: none;
  cursor: pointer;
  margin-top: 1em;
}

.form button:hover {
  background-color: #45a049;
}

.delete {
  cursor: pointer;
  color: red;
  position: absolute;
  right: 0px;
  height: 16px;
  width: 16px;
  padding: 1em;
  display: none;
}

.delete:hover {
  border: 1px solid red;
}

.guest_line {
  position: relative;
  margin-bottom: 1em;
}

.guest_line:hover .delete {
  display: block;
}

ol {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  padding: 1em;
  margin: 0;
}

.guest_line input {
  margin-left: 0.5em;
}

.radio_line {
  display: flex;
  align-items: center;
  width: 100vw;
  font-size: 1.2em;
  margin-bottom: 1em;
}

.radio_line input {
  width: 1em;
  height: 1em;
  margin-right: 0.5em;
}

.thank_you {
  text-align: center;
  font-size: 1.5em;
  margin-top: 2em;
}
