/* 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." */

/*.fade-out-image {
    animation: fadeOut 1s;
    content: " ";
    height: 100vh;
    width: 100vw;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

@keyframes fadeOut {
  0% {opacity:1;}
  100% {opacity: 0;}
}
*/

  body:before {
    content: " ";
    height: 100vh;
    width: 100vw;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background-image: url('https://i.pinimg.com/originals/c4/0b/24/c40b24ccb4eab65f239446818a4bb7a1.gif');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    animation: yourAnimation 1.7s ease 1s 1 normal forwards; pointer-events: none;}
    @keyframes yourAnimation { 0.0%{ opacity: 1;} 100%{opacity: 0;} }
    
.container, .headOne-container {
  width: 500px;
  height: 11px;
  position: static;
  border-radius: 5%;
  background-color: #dae6e1;
  padding: 100px;
}  
  

/*.headOne-container {
  height: 30px;
  width: 30px;
  position: static;
  padding: px;
  background-color: white;
}*/

body {
  background-color: #95aba2;
  font-family: serif;
}

/*
h1 {
  color: ; 
}
*/
