html {
  scroll-behavior: smooth;
  scroll-padding: 150px;
  height: 100%;
}

body {
  margin: 0;
  height: 100%;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  color: white;
  background-image: url("../images/Background.png");
  background-size: absolute;
  background-position: center;
}

.Content {
  width: 100%;
  height: fit-content;
}

.Hero{
  width: 100%;
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.Title {
  position: absolute;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.Logo {
  width: 40%;
}

.WordMark {
  width: 60%;
  animation: rise 1s;
}

.Text {
  width: 30%;
  animation: rise 3s;
}

.About {
  background-color: #6a21ad;
  border-radius: 15px;
  margin: auto;
  margin-bottom: 10%;
  width: 90%;
  max-width: 1000px;
  display: flex;
  justify-content: center;
  text-align: center;
  height: 100%;
  padding-bottom: 5%;
}

.slider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.slider-container img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.slider-container button {
  background-color: #333;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 5px;
}

.slider-container button:hover {
  background-color: #555;
}

.PageTitle{
  width: 100%;
  font-size: 50px;
  font-style: bold;
}

.PageWrap{
  background-color: #8a2be2;
  border-radius: 15px;
  margin: 5%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.PageText{
  font-size: 25px;
  margin-left: 5%;
  margin-right: 5%;
  height: 100%;
  line-break: normal;
  text-align: center;
  width: 70%;
}

.Kiara{
  width: 40%;
  margin-top: 5%;
  margin-bottom: 5%;
}

#contactwrap {
  display: flex;
  flex-direction: column;
}

.SocialLinks {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.SocialLinks a {
  padding: 5%;
}

#contactwrap a {  
  text-decoration: none;
  color: white;
}

.KiaraMini{
  width: 40%;
  margin-top: 5%;
}


@media (max-width: 700px) {

  .slider-container img {
    width: 70%;
  }
  .Title {
    width: 100%;
  }

  .Logo {
    width: 80%;
  }

  .WordMark {
    width: 80%;
  }

  .Text {
    width: 60%;
  }

  .PageWrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .PageTitle {
    font-size: 30px;
  }

  .PageText {
    width: 90%;
    font-size: 20px;
  }

  .Kiara {
    width: 50%;
  }

}

@keyframes rise {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }

  50% {
    opacity: 0;
    transform: translateY(100px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

