body {
  height: 100vh;
  display: flex;
  width: 100%;
  align-items: center;
  background: linear-gradient(to top left, #0c0c0c, #414241);
}

.headLineSection {
  width: 100%;
  text-align: center;
  padding: 5px;
  font-family: 'Barlow Condensed';
  font-size: 55px;
  line-height: 1;
  width: auto;
  color: white;
  text-decoration: none;
}

.show-modal {
  font-size: 2rem;
  font-weight: 600;
  padding: 1.75rem 3.5rem;
  margin: 5rem 2rem;
  border: none;
  background-color: #fff;
  color: #444;
  border-radius: 10rem;
  cursor: pointer;
}

.close-modal {
  position: absolute;
  top: 1.2rem;
  right: 2rem;
  font-size: 3rem;
  color: #333;
  cursor: pointer;
  border: none;
  background: none;
}

p {
  font-size: 1.8rem;
}

/* -------------------------- */
/* CLASSES TO MAKE MODAL WORK */
.hidden {
  display: none;
}

.modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65%;

  background-color: white;
  padding: 3rem;
  border-radius: 30px;
  box-shadow: 0 3rem 5rem rgba(0, 0, 0, 0.3);
  z-index: 10;

  max-height: calc(100vh - 210px);
  overflow-y: auto;
}

.titleText {
  font-family: 'Barlow Condensed';
  font-size: 30px;
  line-height: 1;
}

.contentText {
  font-family: 'Barlow Condensed';
  font-size: 25px;
  line-height: 1;
}

.fullStoryLink {
  font-family: 'Barlow Condensed';
  font-size: 20px;
  line-height: 1;
}

.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;
}
