body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
}
.container {
  text-align: center;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.merriweather-text {
  font-family: 'Merriweather', serif;
  font-size: 44px;
}
label {
  display: block;
  text-align: left;
  max-width: 400px;
  margin-bottom: 4px;
}

input[type="button"] {
  margin-top: 16px;
  padding: 10px 20px;
  background-color: #3C53DE;
  color: #fff;
  border-radius: 12px;
  box-shadow: 2px 2px 20px 2px #2E42BF;
  transition: ease-in-out 0.5s;
}
input[type="button"]:hover {
  background-color: white;
  transition: ease-in-out 0.3s;
  color: #3C53DE;
  border-radius: 0px;
  box-shadow: 0 0 36px 2px #2E42BF;
  border-color: #3C53DE;
  cursor: pointer;
}

/* --- Modal Styles --- */

/* The dark background overlay */
.modal-overlay {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 100; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Black w/ opacity */
}

/* The popup box itself */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px 30px;
    border: 1px solid #888;
    width: 80%;
    max-width: 400px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* The close button (the "x") */
.modal-close-button {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
}

.modal-close-button:hover,
.modal-close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* The text inside the modal */
#modal-text {
    font-size: 1.2rem;
    font-weight: 500;
}