  @keyframes loaded {
    0% {
      opacity: 0;
      position : relative;
      top: 20px;

    }
    100% {
      opacity: 1;
        position : relative;   
        top: 0px;
    }
  }
    @keyframes bgloaded {
    0% {
      background-color: rgba(0, 0, 0, 0.5);

    }
    100% {
      background-color: rgba(0, 0, 0, 0);
    }
  }
@keyframes divloaded {
  0% {
    opacity: 0;
    position : relative;
    top: 20px;
  }

  100% {
    opacity: 1;
      position : relative;   
      top: 0px;
  }
}

@keyframes imgloaded {
  0% {
    opacity: 0;
    position : relative;
    top: 20px;
  }
  100% {
    opacity: 1;
      position : relative;   
      top: 0px;
  }
}
@keyframes img {
    0% {
        opacity: 0;
        position : relative;
        top: 200px;
        height: 400px;
    }
    100% {
        opacity: 1;
        position : relative;   
        top: 0px;
        height: 200px;
    }
}
@keyframes headingloaded {
  0% {
    opacity: 0;
    position : relative;
    top: 20px;
  }
  100% {
    opacity: 1;
      position : relative;   
      top: 0px;
  }
}

@keyframes skew {
  0% {
    transform: skew(0deg);
  }
  100% {
    transform: skew(10deg);
  }
}

body{
	background-image: url("/Images/website\ BG\ 3.png");
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
    color:white;
    font-family: Tahoma, Geneva, Verdana, sans-serif;
    animation-name: loaded;
    animation-duration: 1s;
    
}
div {
    background: rgba(134, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgb(255, 200, 200);
    border-radius: 10px;
    padding: 20px;
    width: 50%;
    margin: 20px auto;
    text-align: center;
    animation-name: divloaded;
    animation-duration: 3s;
    position:relative;
    z-index: 1;
}

a {
    color: rgb(255, 200, 200);
}

h1 {
    font-size: 70px;
    text-shadow: 0px 0px 20px #8a8a8a;
    text-align: center;
    animation-name: headingloaded;
    animation-duration: 2.5s;
    
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 20px;
}


p {
    justify-content: left;
    font-size: 15px;
    text-align: justify;
    width: 50%;
}

#ethan {
    animation-name: img;
    animation-duration: 2s;
    position: relative; 
    z-index: 2;
}
nav{
    display: flex;
    justify-content: left;
    gap: 15px;
    padding: 5px;
    background: rgba(134, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    font-weight: bold;
    font-size: 25px;
    color: rgb(255, 231, 231);
    border: 1px solid rgb(255, 200, 200);
    border-radius: 10px;
    width: 75%;
    margin: 10px auto;
    margin-top: 30px;
    text-shadow: 0px 0px 10px #924040; 
    position: relative;
    z-index: 10; 
}

images {
    text-align: center;
    display: block;
    margin: auto;
    animation-name: imgloaded;
    animation-duration: 2s;
}