
.home-link{
  color:rgb(134, 199, 255) !important;
}

.cover-container {
  width: 100%;
  height: 100svh; 
  background: url('cover3.jpg') no-repeat center center;
  background-size: cover;
}

.cover-title-container p{
  animation: wipe-in-up 1.5s ease-in;

}



.overlay-image {
  position:absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100svh;
  background: url('cover2.png')no-repeat center center;
  background-size: cover;
}

@media (max-width: 768px) {
  .cover-container {
    height: 500px;
    
  }

  .overlay-image {
    height: 500px;
  }


  .cover-title-container p {
    height: 200px;
  }
}

.content-container {
  z-index: 0;
  width: 100%;
  height: 100svh;
  position: absolute;
  background: rgb(19, 19, 19);
}


.cover-title-container {
  height: 10cm;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  position:fixed;
}

.cover-title-container p{ 
  color: rgb(248, 137, 137);
  font-weight: 300;
  letter-spacing: 2rem;
  font-size: clamp(50px, 10vw, 250px);
  text-align: center;
  left: 50%;
  transform: translateX(5%)
}


.welcome-title {
  text-align: center;
  color: rgb(204, 204, 204);
  margin-top: 40px;
  padding-left: clamp(35px, 5vw, 50px);
  padding-right: clamp(35px, 5vw, 50px);

}

.welcome-title h1{
  font-size:clamp(50px, 5vw, 70px);
  font-weight: 300;
}

.welcome-title p {
  font-size:clamp(20px, 2vw, 30px);
  font-weight: 200;
  margin-top: 20px;
  border-bottom: 1px solid rgb(134, 199, 255);
  padding-bottom: 10px;
}

.quotes{
  margin-top: 50px;
  padding: 15px;
  color: rgb(255, 255, 255);
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5vw;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.quotes p {
  font-size: clamp(15px, 2vw, 25px);
  font-weight: 100;
  letter-spacing: 0.5mm;
  background-color: rgba(134, 198, 255, 0.219);
  border-radius: 5px;
  padding: 20px
}

@media (max-width: 768px) {
  .quotes {
    grid-template-columns: repeat(1,1fr);
    gap: 10svh;
  }
}
