@font-face {
  font-family: latoregular;
  src: url('../fonts/Lato-Regular.ttf');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: latobold;
  src: url('../fonts/Lato-Bold.ttf');
  font-weight: normal;
  font-style: normal;
}

/* Title Div */
.title {
}

/* Title Name */
header a.titlename {
  color: white;
  font-size: 50px;
  font-family: latoregular;
  word-spacing: 5px;
  white-space: nowrap;

}

/* Icons */
.icons {
  margin-top: 2px;
  font-size: 20px;
}

body {
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Style all font awesome icons */
.fa {
  margin-top: 30px;
  padding: 5px;
  text-decoration: none;
  border-radius: 50%;
  color: grey;
}

/* Add a hover effect if you want */
.fa:hover {
  opacity: 0.7;
}

.bottom {
  bottom: 0;
  position: fixed;
  left: 50%;
  transform: translate(-50%, -50%);
}

button.bottomtext {
  background:none; border:none;
  margin-top: 30px;
  color: whitesmoke;
  font-size: 20px;
  font-family: latoregular;
  word-spacing: 5px;
  white-space: nowrap;
}

.bottomtext:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 500px){
  header a.titlename {
    font-size: 9vw;
  }

  .icons {
    font-size: 4vw;
  }

  button.bottomtext {
    font-size: 4vw;
  }
}






