@import url("https://fonts.googleapis.com/css2?family=Arya:wght@400;700&display=swap");
@import url("nav.css");
@import url("footer.css");
@import url("chat.css");
body {
  background-image: url('Short\ bg.png');
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: 100% auto;
  overflow-x: hidden;
  margin: 0;
  font-family: Tahoma, Verdana, sans-serif;
}
h1,h2,h3,p, li, a{
    font-family: "Arya", sans-serif;
    font-weight: 400;
    font-style: normal;
}
html{
    margin: 0;
}
body, html{
    overflow-x: hidden;
}
#topSection{
    height: 11vw;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2vw;
}
#topLogo{
    height: 6vw;
    margin-top: 4vw;
}
#sourcesText{
    margin-top: 4vw;
    text-align: center;
    line-height: 10vw;
    letter-spacing: 2.8vw;
    font-size: 2.1vw;
}
.title{
    text-align: center;
    letter-spacing: 0.7vw;
    font-size: 2.5vw;
    margin: 0;
}
#mainContent{
    width: 60%;
    margin: auto;
    margin-top: 3vw;
    margin-bottom: 5vw;
    background-color: white;
    height: auto;
    padding-top: 2vw;
    padding-bottom: 2vw;
    opacity: 0.8;
    border-radius: 2vw;
}
.text{
    text-align: center;
    margin: 0;
    font-size: 1.5vw;
}
a{
    text-decoration: none;
    color: black;
}
a:hover{
    text-decoration: underline;
}
.pdfbutton{
    display: block;
    margin: 0.5vw auto;
    padding: 0.7vw 1.5vw;
    font-size: 1.5vw;
    color: white;
    background-color: #04567D;
    border: none;
    border-radius: 1vw;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
}

.pdfbutton::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: white; /* Wipe color */
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
  transition: left 0.5s ease;
  z-index: 0;
}

.pdfbutton:hover::before {
  left: 0; /* Slide in */
}

.pdfbutton:hover {
  color: black;          /* Changes text color when white background slides in */
  transform: scale(1.05);
}

.pdfbutton:active {
  transform: scale(0.95);
}

.pdfbutton span {
  position: relative;
  z-index: 2;
}
.pdfbutton:hover span::after {
  content: " >";
  position: relative;
}
@media (max-width: 768px){
  body{
    background-image: url('long-bg.png');
  }
  #topSection{
      height: 18vw;
  }
  #sourcesText{
      font-size: 4vw;
      letter-spacing: 4vw;
      margin-top: 6vw;
  }
  #topLogo{
    height: 8vw;
}
#mainContent{
  margin-top: 25vw;
  margin-bottom: 26vw;
  height: 90vw;
  width: 90vw;
}
.text{
  font-size: 3.5vw;
}
.title{
  font-size: 5vw;
}
.pdfbutton{
  padding: 1vw 5vw;
  font-size: 4vw;
  margin-bottom: 2vw;
}
}