* {
  margin: 0;
  padding: 0;
}

body {
  width: 100%;
  min-height: 100%;
  background-color: bisque;
  color: #000;
  font-size: 16px;
  text-align: center;
  font-weight: 500;
  font-family: "Arial", "sans serif";
  display: flex;
  flex-direction: column;
  gap: 15px;
}
body.lock {
  overflow: hidden;
}

h1 {
  margin-top: 75px;
}

.hidden {
  visibility: hidden;
  opacity: 0;
}

h2 {
  margin-bottom: 15px;
  font-size: 20px;
}

.overlay-modal {
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.6);
  transition: all 0.2s;
}

.info {
  text-decoration: underline;
}

h1 {
  margin-bottom: 30px;
}

.results h2 {
  margin-bottom: 15px;
}
.results div {
  margin-bottom: 10px;
}
.results div span {
  font-weight: 600;
}

button {
  width: 200px;
  padding: 10px 0px;
  text-align: center;
  background-color: #fff;
  color: #000;
  margin: 0 auto;
  border-radius: 0.5em;
  cursor: pointer;
  font-weight: 500;
  font-size: 18px;
}

.input input {
  max-width: 100px;
  padding: 5px;
  font-weight: 600;
  font-size: 18px;
}

.modal {
  position: fixed;
  z-index: 15;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  width: 60%;
  height: 500px;
  padding: 3em;
  box-sizing: border-box;
  margin: 2.5em 0;
  border-radius: 1.5em;
  overflow: auto;
  transition: all 0.5s;
}
.modal__close {
  display: block;
  position: absolute;
  top: 2rem;
  right: 1.5rem;
  border: none;
  cursor: pointer;
  background-color: #fff;
}

p {
  max-width: 500px;
  margin: 15px auto;
}

.hidden-info,
.hidden {
  display: none;
}

li {
  margin: 50px;
  list-style-type: none;
  padding: 50px;
  padding-top: 15px;
  border: 2px solid #000;
  border-radius: 12px;
}