body {
  height: 100%;
  background-image: linear-gradient(to bottom right, white, #7a3f84);
  background-repeat: no-repeat;
  background-attachment: fixed;
}

p {
  font-weight: bold;
  font-size: 1.5em;
}

.fade-in {
  animation: fadeIn ease-in-out 3s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

#header {
  background-color: black;
  border-radius: 20px;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
  color: #a91ac2;
  margin-bottom: 1em !important;
  margin: 0 auto;
  padding: 1.43em;
  width: 45%;
}

.container {
  padding-bottom: 3%;
  padding-top: 1%;
}

img {
  border-radius: 12px;
  transition-duration: 700ms;
  height: auto;
}

img:hover {
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
  transform: translate(-1.2%, -1.6%);
}

.btn {
  transition-duration: 300ms;
  border: none;
  border-radius: 12px;
  background-color: blueviolet;
  font-size: 1.7em;
  margin-bottom: 1%;
}

.btn:hover {
  background-color: whitesmoke;
  color: black;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
}

.slide {
  transition-duration: 300ms;
  animation: 1s ease-out 0s 1 slideInFromLeft;
  padding: 1.2em;
  margin-bottom: 12px;
  border-radius: 30px;
  color: black;
}

.slide:hover {
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
}

#more-info-button {
  margin-left: 1em;
}

@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

.dwm-container {
  background-color: whitesmoke !important;
}
