#preroll {
  z-index: 1001;
  width: 100%;
  height: 100%;
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.884);
}

.preroll-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  max-height: 95%;
  animation: fadein 0.7s;
}

@keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

#preroll-link,
img {
  width: 100%;
  height: 100%;
}

.close-section {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}

.close-time {
  font-size: 0.85rem;
  color: #fff;
}

.close-button {
  font-size: 3.2rem;
  width: 2rem;
  height: 2rem;
  color: #fff;
  fill: #fff;
  cursor: pointer;
}
