html, body {
  margin: 0;
  padding: 0;
}

body {
  background-color: #262643;
  font-family: 'Roboto', sans-serif;
  color: #FFF;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.fa {
  padding: 8px 0;
  width: auto;
  text-align: center;
  text-decoration: none;
  margin-right: 15px;
}

.fa:hover {
  opacity: 0.6;
}

.fa.fa-facebook {
  color: white;
  font-size: 1.3rem;
}

.fa.fa-instagram {
  color: white;
  font-size: 1.3rem;
}

/* Alert */
.alert {
  display: none;
  padding: 20px;
  background-color: #04AA6D;
  color: white;
  margin-bottom: 15px;

  position: absolute;
  left: 5vw;
  right: 5vw;
  top: 5vh;
  border-radius: 8px;
}

.closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.closebtn:hover {
  color: black;
}