html, body {
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
}

body {
  background-color: #ffffff;
  font-family: 'Major Mono Display', monospace;
  font-size: 16px;
  position: relative;
}


h1 {
  font-family: 'Major Mono Display', monospace;
  font-size: 150px;
  color: black;
}

p {
  color: black;
}


/* get rid of firefox dots */
a:focus {
  outline: none;
}

button::-moz-focus-inner {
  border: 0;
}

.cover-container {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  border: none;
}


#developed-by {
  margin: 0px 0px 0px 0px;
}

#cover-header {
  height: 25%;
  margin-bottom: 1px;
}


@media (min-width: 768px) {
  .cover-container {
    background-image: url('../images/dark.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .cover-container p, h1 {
    color: white;
    opacity: 0.8;
  }

}


/* Add animation to "page content". This will make it 'slide up' when it loads. */
.animate-bottom {
  position: relative;
  -webkit-animation-name: animatebottom;
  -webkit-animation-duration: 1s;
  animation-name: animatebottom;
  animation-duration: 1s
}

@-webkit-keyframes animatebottom {
  from { bottom:-100px; opacity:0 } 
  to { bottom:0px; opacity:1 }
}

@keyframes animatebottom { 
  from{ bottom:-100px; opacity:0 } 
  to{ bottom:0; opacity:1 }
}
/* end animation */



#countdown {
  font-size: 40px;
}


#buttonScroll {
  font-size: 20px;
  font-family: 'Major Mono Display', monospace;
  border: 3px solid black;
}

#buttonScroll:hover {
  background-color: #baffcc;
  transition: 1s;
  color: black;
}

@media (min-width: 768px) {
  #buttonScroll {
    border: 3px solid white;
    color: white;
    opacity: 0.8;
  }

  #buttonScroll:hover {
    background-color: white;
  }

}

.site-body-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  color: black;
}

.nav-bar {
  width: 200px;
  position: sticky;
  position: -webkit-sticky; /* Safari */
}

.nav-bar ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 200px;
  background-color: #f1f1f1;
  height: 100vh;
  top: 0;
  position: sticky;
  position: -webkit-sticky; /* Safari */
  overflow: auto;
  font-size: 20px;
}

.nav-bar li a {
  display: block;
  width: 190px;
  color: #000;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 10px;
  text-decoration: none;
  text-align: left;
}

.nav-bar li a:hover {
  background-color: #555;
  color: white;
}


.nav-bar li a:active {
  background-color: black;
  color: white;
}


.active {
  background-color: #baffcc;
  color: white;
}


.site-body-container p {
  font-family: 'Krub', sans-serif;
  font-size: 16px;
  color: black;
}
  

.site-body {
  position: relative;
  margin-left: 20px;
  margin-right: 30px;
  font-family: 'Krub', sans-serif;
  color: black;
  flex: 1 0;
  overflow: hidden;
  align-self: flex-start;
}

.site-body h1 {
  font-size: 30px;
  color: black;
  opacity: 1.0;
}


.phase-one {
  display: none;
}

.phase-two {
  display: none;
}

.phase-three {
  display: none;
}

.phase-four {
  display: none;
}


* {
  box-sizing: border-box;
}

.column {
  float: left;
  width: 50%;
  padding: 5px;
}

.row::after {
  content: "";
  clear: both;
  display:table;
}

.footer {
  height: 10vh;
  width: 100%;
  flex-basis: 100%;
  text-align: center;
}


.team-container {
  display: none;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: flex-start;
  align-content: flex-start;
  margin-top: 20px;
}

.team {
  width: 50vh;
  text-align: center;
  margin-bottom: 40px;
  border-radius: 20px;
  padding: 10px 10px 10px 10px;
}

.team:hover {
  box-shadow: 10px 10px 10px grey;
  transition: 0.75s;
}
 
.team img {
  border-radius: 20px;
}


.contact-us {
  display: none;
}