@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  height: 100vh;
  overflow: hidden;
  font-family: "Montserrat", sans-serif;
}
.container {
  width: 100%;
  height: 100vh;
  background-color: #000;
}
h3 {
  font-size: 80px;
  font-weight: 400;
  color: #fff;
}
h4 {
  color: wheat;
}
.slideshow-wrapper {
  overflow: hidden;
  transition: opacity 1s;
}

.slideshow {
  display: flex;
  width: 400%;
  height: 100%;
  position: relative;
  animation: slideshow 60s infinite;
}

@keyframes slideshow {
  0% {
    left: 0;
  }
  10% {
    left: 0;
  }
  15% {
    left: -100%;
  }
  25% {
    left: -100%;
  }
  30% {
    left: -200%;
  }
  40% {
    left: -200%;
  }
  45% {
    left: -300%;
  }
  55% {
    left: -300%;
  }
  60% {
    left: -200%;
  }
  70% {
    left: -200%;
  }
  75% {
    left: -100%;
  }
  85% {
    left: -100%;
  }
  90% {
    left: 0;
  }
}

.slide {
  width: 100%;
  height: 100vh;
}

.slide:nth-child(1) {
  background: linear-gradient(
      100deg,
      rgba(38, 38, 38, 1),
      rgba(38, 38, 38, 0.8),
      transparent
    ),
    url("../Images/skelett.png") center no-repeat;
  background-size: cover;
}

.slide:nth-child(2) {
  background: linear-gradient(
      100deg,
      rgba(38, 38, 38, 1),
      rgba(38, 38, 38, 0.8),
      transparent
    ),
    url("../Images/peopleHeart.png") center no-repeat;
  background-size: contain;
}

.slide:nth-child(3) {
  background: linear-gradient(
      100deg,
      rgba(38, 38, 38, 1),
      rgba(38, 38, 38, 0.8),
      transparent
    ),
    url("../Images/catEye.jpg") center no-repeat;
  background-size: contain;
  background-position: 60% 80%;
}

.slide:nth-child(4) {
  background: linear-gradient(
      100deg,
      rgba(38, 38, 38, 1),
      rgba(38, 38, 38, 0.8),
      transparent
    ),
    url("../Images/brainCell.png") center no-repeat;
  background-size: 60%;
  background-position: right;
}

.content {
  width: 500px;
  position: relative;
  top: 35%;
  left: 5%;
}

p {
  font-size: 20px;
  color: #fff;
}

button {
  background-color: wheat;
  padding: 5px;
  border-radius: 10%;
  border: none;
  margin-right: 10px;
  cursor: pointer;
}

.hover:hover {
  background-color: white;
}
i {
  margin-left: 8px;
}
.back {
  background-color: rgb(249, 202, 114);
}
.back:hover {
  background-color: white;
}
