* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "New Rocker", system-ui;
  background-color: black;
  color: white;
  margin: 0;
  font-size: 20px;
}

a {
  text-decoration: none;
}

/* HEADER */
.navbar-brand {
  font-size: 75px;
  color: #ae3823;
}

/* MAIN */
.title {
  color: #ae3823;
}

.social-icon i {
  font-size: 75px;
}

.social-icon a {
  color: #ae3823;
}

.social-icon a:hover {
  color: white;
}

/* RESPONSIVE */
@media screen and (max-width: 478px) {
  .social-icon {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    margin-bottom: 75px;
  }
  .social-icon a {
    color: white;
  }

  .social-icon a:hover {
    color: #ae3823;
  }
}
