  @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;
  }
  50% {
      opacity: 0;
      position : relative;
      top: 20px;
  }
  100% {
    opacity: 1;
      position : relative;   
      top: 0px;
  }
}
@keyframes float {
            0% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-20px);
            }

            100% {
                transform: translateY(0);
            }
        }

@keyframes imgloaded {
  0% {
    opacity: 0;
    position : relative;
    top: 20px;
  }
  50% {
      opacity: 0;
      position : relative;
      top: 20px;
  }
  100% {
    opacity: 1;
      position : relative;   
      top: 0px;
  }
}
@keyframes img {
    0% {
        opacity: 0;
        position : relative;
        top: 200px;
        height: 400px;
    }
    50% {
        opacity: 1;
        position : relative;
        top: 20px;
        height: 400px;
    }
    100% {
        opacity: 1;
        position : relative;   
        top: 0px;
        height: 200px;
    }
}
@keyframes headingloaded {
  0% {
    opacity: 0;
    position : relative;
    top: 20px;
  }
  50% {
      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;
    
}
#sillydiv {
    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: auto;
    margin-bottom: 150px;
    text-align: center;
    animation-name: divloaded;
    animation-duration: 3s;
    position:relative;
    z-index: 1;
}

#imagediv1 {
    margin-left: 10%;
    background: rgba(134, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgb(255, 200, 200);
    border-radius: 10px;
    padding: 0px;
    width: 50%;
    float: left;
    margin: auto right=25%;
    text-align: center;
    animation-name: divloaded;
    animation-duration: 3s;
    position:relative;
    z-index: 1;
    
}
#sillydiv3 {
    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;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}
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: center;
    font-size: 15px;
    text-align: center;
}

#ethan {
    animation-name: img;
    animation-duration: 2s;
    position: relative; 
    z-index: 2;
    animation:float 3s ease-in-out infinite, img 2s ease-in-out;
}
nav{
    position: relative;
    z-index: 10; 
    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; 
}
* {
  box-sizing: border-box;
}

img {
    text-align: center;
    display: block;
    margin: auto;
    animation-name: imgloaded;
    animation-duration: 2s;
}

/* Use media query and show the flex items vertically if screen width is less than 600px */
@media screen and (max-width:600px) {
  div.imagediv1 {
    margin-left: 0;
    float: center;
    width: 100%;
  }
}