* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: rgb(2, 23, 35);
}
.container {
  margin: 2.5%;
  background-color: rgb(247, 247, 179);
}
.heading {
  background-color: rgb(2, 23, 35);
  height: 4rem;
  width: 100%;
  color: rgb(247, 247, 179);
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-items: center;
  font-size: 2.5rem;
  padding-bottom: 0.75rem;
}
.intro {
  background-image: url(images/temple.jpg);
  background-repeat: no-repeat;
  background-size: cover;

  display: flex;
  height: 60rem;
}
#imgSolon {
  padding-top: 5%;
  height: 100%;
}
.middle {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 3rem;
  padding-top: 5%;
}
.middle span {
  color: black;
  transform: translateY(-1000px);
  transition: all 1s;
}
.middle span:nth-child(1) {
  animation: showLetter 1s ease-in-out forwards;
  animation-delay: 3s;
}
.middle span:nth-child(2) {
  animation: showLetter 1s ease-in-out forwards;
  animation-delay: 4s;
}
.middle span:nth-child(3) {
  animation: showLetter 1s ease-in-out forwards;
  animation-delay: 5s;
}
.middle span:nth-child(4) {
  animation: showLetter 1s ease-in-out forwards;
  animation-delay: 6s;
}
.middle span:nth-child(5) {
  animation: showLetter 1s ease-in-out forwards;
  animation-delay: 7s;
}
.middle span:nth-child(6) {
  animation: showLetter 1s ease-in-out forwards;
  animation-delay: 8s;
}
.middle span:nth-child(7) {
  animation: showLetter 1s ease-in-out forwards;
  animation-delay: 9s;
}
.middle span:nth-child(8) {
  animation: showLetter 1s ease-in-out forwards;
  animation-delay: 10s;
}
.middle span:nth-child(9) {
  animation: showLetter 1s ease-in-out forwards;
  animation-delay: 11s;
}
.middle span:nth-child(10) {
  animation: showLetter 1s ease-in-out forwards;
  animation-delay: 12s;
}
@keyframes showLetter {
  0% {
    color: black;
    transform: translateY(-1000px);
  }
  30% {
    color: black;
    transform: translateY(-100px);
  }
  60% {
    color: black;
    transform: translateY(50px);
  }
  100% {
    color: rgb(247, 247, 179);
    transform: translateY(0px);
  }
}
.videos {
  display: flex;
  justify-content: left;
  gap: 10px;
}
.right {
  padding: 6% 5%;
  font-size: 1.5rem;
  background-color: rgba(0, 0, 0, 0.2);
  color: rgb(247, 247, 179);
  width: 50%;
}
.details {
  font-size: 1.25rem;
  padding: 5%;
  padding-top: 2%;
}
.btns {
  margin-top: 1%;
  margin-bottom: 2%;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.btn {
  border: 2px solid rgb(247, 247, 179);
  background: none;
  color: rgb(247, 247, 179);
  padding: 15px 30px;
  font-size: 1.1rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.5s;
  font-weight: bold;
  position: relative;
  color: rgb(247, 247, 179);
  overflow: hidden;
}

.btn:hover {
  color: rgb(2, 23, 35);
}

.btn:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(247, 247, 179);
  z-index: -1;
  border-radius: 50% 50% 0% 0%;
  height: 0%;
  transition: all 0.5s;
}

.btn:hover:before {
  height: 190%;
}
