@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@400;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
}

body {
  font-family: "Mulish", sans-serif;
  color: #fff;
  line-height: 1.5;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: #0f172a;
}

.show-modal {
  font-size: 2rem;
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  padding: 1.75rem 3.5rem;
  border: 2px solid #0ea5ea;
  background: transparent;
  color: #fff;
  border-radius: 50px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 45%;
}
.show-modal:hover, .show-modal:focus {
  background: linear-gradient(90deg, #0ea5ea, #0bd1d1 51%, #0ea5ea);
}

.modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 640px;
  background-color: #131c31;
  color: #b9e0f2;
  padding: 6rem;
  border: 1px solid #222f43;
  border-radius: 20px;
  z-index: 10;
}
.modal .close-modal {
  position: absolute;
  top: 1.2rem;
  right: 2rem;
  font-size: 5rem;
  color: #b9e0f2;
  cursor: pointer;
  border: none;
  background: none;
}
.modal .close-modal:hover, .modal .close-modal:active {
  color: #cfeaf6;
}
.modal h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
.modal p {
  font-size: 1.8rem;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  z-index: 5;
}

.hidden {
  display: none;
}