/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */



   a {
    color: #c59fff;
    text-decoration: none;
}


body {
  background: linear-gradient(90deg, #442073 0%, rgba(81,38,124,1) 25%, rgba(81,38,124,1) 75%, #442073 100%);;
  font-family: Verdana;
  margin: 0;
}

@keyframes pan {
    0% {
      background-position: 0% 0%;
    }
    100% {
      background-position: 100% 100%;
    }
  }

@keyframes sway {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(10px);
    }
}




#stars {
  width:50vw;
  height: 100vh;
  position: absolute;

  background-image: url("stars.png");
  
  background-size: 10%;
  opacity: 0.1;
  animation: pan 60s linear infinite;
 }

#main {
  background: #51267c;
  display:flex;  
  padding: 0%;
  margin-top: 0%;
  width: 50vw;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  margin-inline: auto;
  
}


.btn {
    text-decoration: none;
    color: #51267c;
    padding: 0.5rem;
    border: 0px solid #333333;
    border-radius: 20px;
    background-color: #c59fff;
    transition: 250ms;
}

.btn:hover {
    text-decoration:none;
    color: #5c2d8b;
    padding: 0.76rem;
    border: 2px solid #51267c;
    background-color: #c59fff65;
    transition: 250ms;
    border-style:solid;
}
      
#gradient {
    background: linear-gradient(90deg, rgba(81,38,124,1) 0%, rgba(1,104,143,0) 25%, rgba(0,182,224,0) 75%, rgba(81,38,124,1) 100%);
    display:fixed;
    width:50vw;
    height: 100vh;
    position:absolute;
    margin-inline: auto;
    z-index: 1;
}

#main2 {


  display: flex;
  height: 100vh;
  width: 33vw;
  line-height: 500%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-inline: auto;
  z-index: 2;
}

#lake {
    display:fixed;
    width:50vw;
    height: 100vh;
    position:absolute;
    margin-inline: auto;
    z-index: 1;
    background-image: url("lake.png");
    background-repeat: no-repeat;
    image-rendering: crisp-edges;
    background-size: 45%;
    background-position-y: 10vh;
    background-position-x: center;
    animation: sway 2s ease-in-out infinite alternate both;

}


#main2 h1 {
    color: azure;
    font-size: small;
}
