body {
  color: rgb(255,255,255);
  background: rgb(0,0,0);
}

#hero {
  width: 100%;
  height: 100vh;
}

.navbar-brand {
  background: url("IMG_20190424_210830.jpg") center / 80% no-repeat;
  width: 150px;
  height: 40px;
}

#navcol-1 {
  font-size: 18px;
  font-family: Montserrat, sans-serif;
  text-transform: uppercase;
}

.nav-link {
}

.navbar-light .navbar-nav .active > .nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show > .nav-link {
  color: rgba(255,255,255,0.9);
}

.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
  color: rgba(255,255,255,0.9) !important;
}

.navbar-light .navbar-nav .nav-link {
  color: rgba(255,255,255,0.9) !important;
}

.navbar-light .navbar-toggler {
  color: #ffffff !important;
  border-color: transparent !important;
}

@media (min-width: 768px) {
  #openingparagraph {
    width: 60%;
  }
}

@media (min-width: 1200px) {
  #openingparagraph {
    width: 60%;
  }
}

#features {
  background: #ffffff;
}

#sectionlists {
}

.sectionlists {
}

.sectionlink {
  color: #ffffff;
}

.sectionlink.sectionlink:hover {
  color: rgb(69,162,83);
}

#sheading {
  width: 50%;
  margin: 0 auto;
  padding-top: 18px;
}

@media (min-width: 768px) {
  iframe {
    height: 300px;
    width: 90%;
  }
}

@media (min-width: 992px) {
  iframe {
    width: 80%;
  }
}

@media (min-width: 1200px) {
  iframe {
    width: 65%;
  }
}

@media (min-width: 576px) {
  iframe {
    height: 300px;
  }
}

/* card css stuff*/

/* From Uiverse.io by MikeAndrewDesigner */ 
.e-card {
  margin: 10px auto;
  background: transparent;
  box-shadow: 0px 8px 28px -9px rgba(0,0,0,0.45);
  position: relative;
  width: 280px;
  height: 330px;
  border-radius: 16px;
  overflow: hidden;
}

.wave {
  position: absolute;
  width: 540px;
  height: 700px;
  opacity: 0.6;
  left: 0;
  top: 0;
  margin-left: -50%;
  margin-top: -70%;
  background: linear-gradient(744deg,#af40ff,#5b42f3 60%,#00ddeb);
}


.infotop {
  text-align: center;
  /* font-size: 20px; */
  position: absolute;
  /* top: 5.6em; */
  left: 0;
  right: 0;
  color: rgb(255, 255, 255);
  font-weight: 600;
}

.namec {
  font-size: 14px;
  font-weight: 100;
  position: relative;
  top: 1em;
}

.wave:nth-child(2),
.wave:nth-child(3) {
  top: 210px;
}

.playing .wave {
  border-radius: 40%;
  animation: wave 3000ms infinite linear;
}

.wave {
  border-radius: 40%;
  animation: wave 55s infinite linear;
}

.playing .wave:nth-child(2) {
  animation-duration: 4000ms;
}

.wave:nth-child(2) {
  animation-duration: 50s;
}

.playing .wave:nth-child(3) {
  animation-duration: 5000ms;
}

.wave:nth-child(3) {
  animation-duration: 45s;
}

@keyframes wave {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}