body {
  margin: 0;
  font-family: "Roboto", sans-serif;
}

.header-image {
  height: 100vh;
  width: 100%;
  object-fit: cover;
  filter: brightness(0.3);
}

.header{
  position: sticky;
  top: 0;
  left: 10px;
  right: 10px;
}

.heading {
  position: absolute;
  height: 10vh;
  right: 32px;
  left: 32px;
  top: 50px;
  color: white;
  font-size: 54px;
  font-weight: normal;
  display: flex;
  align-items: center;
  justify-content: center;
}

h1{
  font-size: 54px;
  font-weight: normal;
}	

h2{
  font-size: 28px;
  font-weight: normal;
}

.slogan {
  position: absolute;
  height: 10vh;
  right: 32px;
  left: 32px;
  top: 110px;
  text-align: center;
  color: rgb(102, 102, 102);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

hr {
  border: none;
  border-top: 2px solid rgb(101, 102, 102);
  width: 150px;
  margin-top: 0 auto;
}

.linkcontainer {
  position: absolute;
  right: 32px;
  left: 32px;
  top: 45%;
  font-size: 38px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: fit-content;
}

.navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}

.menu-link {
  color: white;
  text-decoration: none;
  font-size: 1em;
  margin: 50px;
  transition: transform 0.2s ease-in-out;
}

.menu-link:hover {
  transform: scale(1.05);
}

.social-media {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.social-media a {
  display: inline-block;
  margin: 0 20px;
  transition: all 0.2s ease-in-out;
}

.social-media a:hover {
  transform: scale(1.2);
}

.social-media img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
}

.footer {
  position: absolute;
  right: 32px;
  left: 32px;
  bottom: 0px;
  font-size: 18px;
  color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
}

.footer a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .heading {
    font-size: 36px;
  }

  .slogan {
    font-size: 20px;
  }
  
h1{
  font-size: 36px;
  font-weight: normal;
}	

h2{
  font-size: 20px;
  font-weight: normal;
}

  .linkcontainer {
    font-size: 20px;
    top: 40%;
  }

  .menu-link {
    margin: 20px;
  }

  .footer {
    font-size: 10px;
     }
}
