html,
body {
  height: 100%;
}

body {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

title {
  font-family: "Noto Serif", serif;
  font-optical-sizing: auto;
}

.logo {
  color: white;
  font-family: "Noto Serif", serif;
  font-optical-sizing: auto;
  font-size: large;
  font-size: 2.5rem;
  font-weight: 700;

  white-space: nowrap;
  overflow: hidden;

  display: flex;
  align-items: flex-end;
}

.logo-sub {
  font-size: 1.15rem;
  font-weight: 500;
  padding: 8px 10px;
}

.main-section {
  position: relative;
  height: calc(100% - 120px);
  width: 100%;

  /* background-image: url("../assets/images/compressed/main.jpeg"); */
  background-position: center;
  background-size: cover;

  display: flex;
  flex-direction: row;
}

.section1 {
  height: 100%;
  width: 100%;
  background-image: url("../assets/images/9.jpeg");
  background-position: bottom center;
  background-size: cover;
}

.section2 {
  height: 100%;
  width: 100%;
  background-image: url("../assets/images/4.jpeg");
  background-position: bottom center;
  background-size: cover;
}

.section3 {
  height: 100%;
  width: 100%;
  background-image: url("../assets/images/6.jpeg");
  background-position: bottom center;
  background-size: cover;
}

.content-overflow {
  width: 100%;
  display: flex;
  justify-content: space-around;

  position: absolute;
  top: 5rem;

  color: white;
  font-family: "Noto Serif", serif;
  font-optical-sizing: auto;
  font-size: large;
  font-size: 5rem;
}

.main-section::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(rgba(17, 17, 17, 0.1), rgb(17, 17, 17, 1));
}

footer {
  display: flex;
  flex-direction: row;
  padding: 0.5rem 12rem;
  justify-content: space-around;
  height: 120px;
  background-color: rgb(17, 17, 17);
}

footer .content {
  width: 100%;
  max-width: 1280px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .logo {
    text-align: center;
    align-items: center;
    font-size: 2rem;
    margin-bottom: 0.5rem;

    flex-direction: column;
  }

  .logo-sub {
    padding: 0;
    font-size: 0.75rem;
  }

  footer .content {
    flex-direction: column;
    justify-content: flex-start;
  }

  .main-section {
    background-image: url("../assets/images/mobile/main.jpeg");
    background-position: center;
    background-size: cover;
  }

  .section1,
  .section3 {
    display: none;
  }
}
