body {
 background-color: #131313;
}



.imagefeatures {
  width: 100%;
  display: inline-table;
  margin-top: 50px;

}

.infoheader {
  color: white;
  margin-top: 150px;
  text-transform: uppercase;
  font-family: sans-serif;
  display: block;
  font-size: 35px;

}

td {
  
  font-family: Verdana;
  font-size: 25px;
  color: white;
  
}

.desc1 {
  display: flex;
  text-transform: uppercase;
  padding-left: 50px;
  margin-top: -90px;
}

.desc2 {
   margin-top: 15px;
  display: flex;
  padding-left: 90px;
  text-transform: uppercase;
}

.animation-intro {
  opacity: 1;
  transition: 3s;
  animation: intro 3.5s ;
} 

.features {
  color: white;
  text-transform: uppercase;
  font-family: sans-serif;
  font-size: 35px;
  display: block;
  margin-top: 250px;
}
.desc {
  color:white;
  font-family: Sans-Serif;
  font-size: 9px;
  transition: 3s;
  opacity: 0.3;
}

.btn {
  font-family: Tahoma;
  text-decoration: none;
  color: white;
  padding: 13px;
  border: 2px solid white;
  display: block;
  margin-top: 30px;
  width: 50%;
  transition: 3s;
}

.btn:hover {
  color: black;
  background-color: white;
  animation: anim1 3s infinite;
  border-radius: 15px;
}

.desc:hover {
  opacity: 1;
}
.watermark {
  color: white;
  font-family: Tahoma;
  text-transform: uppercase;
  font-size: 20px;

}

.logo {
  border-radius: 100px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  width: auto;
  height: auto;
  
}

@keyframes anim1 {
  0% {
    border: 2px solid white;
  }

  50% {
    border: 2px solid #8E5EFF;
  }

  100% {
    border: 2px solid floralwhite;
  }

  150% {
    border: 2px solid white;
  }
}

@keyframes intro {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0;
    transform: scale(2);
  }

  100% {
opacity: 1;
    transform: scale(1.0);
  }
}

@keyframes animColor {
  0% {
    color: #8E5EFF;
  }
  
  50% {
    color: #763BFF;
  }
  
  100% {
    color: #8E5EFF
  }
}

