body, html {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  background: #00092C;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Muli', sans-serif;
}

.container {
  text-align: center;
}

h1 {
  font-size: 75px;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 0;
  line-height: 1;
  font-weight: 700;
}

.dot {
  color: #4FEBFF;
  cursor: not-allowed;
}

p {
  margin: 18px;
  font-weight: normal;
}

.icons {
  text-align: center;
}

.icons i {
  color: #00092C;
  background: #fff;
  height: 10%;
  width: 10%;
  padding: 13px;
  margin: 0 10px;
  border-radius: 50px;
  border: 2px solid #fff;
  transition: all 200ms ease;
  text-decoration: none;
  position: relative;
}

.icons i:hover, .icons i:active {
  color: #fff;
  background: none;
  cursor: pointer !important;
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  text-decoration: none;
  
}

#smokeScreen {
  position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.button {
  color: #00092C;
  background: #fff;
  height: 10%;
  width: 15px;
  padding: 13px;
  margin: 0 10px;
  border-radius: 50px;
  border: 2px solid #fff;
  transition: all 200ms ease;
  text-decoration: none;
  position: relative;
  font-size: 1.125rem;
  padding: 1rem 2rem;
}

.button:hover {
  color: #fff;
  background: none;
  cursor: pointer !important;
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  text-decoration: none;
}

@media (max-width: 800px) {
  h1 {
    font-size: 10vw;
  }
}
