* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Anton", sans-serif;
}
.header {
  width: 100%;
  height: 95vh;
  background-color: rgb(19, 17, 17);
}
.image {
  width: 70%;
  height: 600px;
  position: absolute;
  top: 15%;
  left: 15%;
  animation: bike 4s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.text {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 7%;
}
.big-text {
  color: rgba(172, 172, 172, 0.7);
  font-size: 200px;
}
.text-red {
  color: rgb(133, 2, 2);
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: aliceblue;
  padding: 0 50px;
  background-color: rgba(0, 0, 0, 0.384);
}
.logo {
  cursor: pointer;
  width: 200px;
  height: 60px;
}
ul {
  display: flex;
  justify-content: space-between;
}
.link {
  margin-left: 30px;
  cursor: pointer;
  list-style: none;
  color: rgba(172, 172, 172, 0.7);
  transition: 0.3s;
}
.link:hover {
  color: rgb(133, 2, 2);
  transform: scale(1.5);
}
.media {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: rgba(172, 172, 172, 0.7);
  font-size: 2rem;
  position: absolute;
  top: 70%;
  left: 2%;
  cursor: pointer;
}
.fab {
  margin-bottom: 14px;
}
.fab:hover {
  color: rgb(172, 172, 172);
}
.media-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: rgba(172, 172, 172, 0.7);
  font-size: 1.5rem;
  position: absolute;
  top: 70%;
  left: 5%;
  cursor: pointer;
}
h4 {
  margin-bottom: 12px;
}
@keyframes bike {
  0% {
    top: 15%;
    left: -2000px;
  }
  100% {
    top: 15%;
  }
}
