* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: black;
  overflow-x: hidden;
  font-family: Arial, Helvetica, sans-serif;
}

/* HOME */

.home-container {
  position: relative;
  width: 100%;
}

.home-image {
  width: 100%;
  height: auto;
  display: block;
}

.link {
  position: absolute;
  display: block;
  cursor: pointer;
}

.about {
  top: 7.2%;
  left: 66%;
  width: 7%;
  height: 2.5%;
}

.contact {
  top: 7.2%;
  left: 80%;
  width: 8%;
  height: 2.5%;
}

.hyde {
  top: 20%;
  left: 0;
  width: 100%;
  height: 9%;
}

/* ABOUT */

.about-page {
  background-color: #efefef;
}

.about-container {
  width: 100%;
}

.about-image {
  width: 100%;
  height: auto;
  display: block;
}

/* CONTACT */

.contact-page {
  background-color: #efefef;
}

.contact-container {
  position: relative;
  width: 100%;
}

.contact-image {
  width: 100%;
  height: auto;
  display: block;
}

.contact-link {
  position: absolute;
  display: block;
  cursor: pointer;
}

.email-link {
  top: 10.2%;
  left: 13%;
  width: 58%;
  height: 4%;
}

.linkedin-link {
  top: 19.1%;
  left: 18%;
  width: 48%;
  height: 4%;
}

.instagram-link {
  top: 23.8%;
  left: 18%;
  width: 52%;
  height: 4%;
}

/* HYDE */

.hyde-page {
  background-color: white;
}

.hyde-container {
  position: relative;
  width: 100%;
}

.hyde-image {
  width: 100%;
  height: auto;
  display: block;
}

.hyde-video {
  position: absolute;
  display: block;
  background-color: black;
  object-fit: cover;
}

/* HYDE VIDEOS */

.video-1 {
  top: 22.65%;
  left: 0;
  width: 100%;
  height: 4.2%;
}

.video-2 {
  top: 27.1%;
  left: 0;
  width: 100%;
  height: 4.2%;
}

.video-3 {
  top: 56.45%;
  left: 0;
  width: 100%;
  height: 3.6%;
}

.video-4 {
  top: 59.95%;
  left: 36.2%;
  width: 28.2%;
  height: 3.65%;
}

.video-5 {
  top: 64.45%;
  left: 50.3%;
  width: 49.7%;
  height: 4.5%;
}

/* BACK BUTTON */

.back-home-button {
  position: fixed;
  top: 28px;
  right: 35px;
  z-index: 1000;

  width: 52px;
  height: 52px;
  border-radius: 50%;

  background-color: rgba(58, 58, 58, 1);
  color: white;
  text-decoration: none;

  display: flex;
  align-items: center;
  justify-content: center;

  padding-bottom: 3px;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;

  transition: 0.2s ease;
}

.back-home-button:hover {
  background-color: white;
  color: black;
}