body {
  font-family: Arial, sans-serif;
  margin: 0;
  position: relative;
  background-color: #f4f4f4;
  color: #333;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  background-color: #333;
  color: #fff;
  padding: 20px 20px;
  position: sticky;
  top: 0;
  height: 3vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}
.header h2 {
  margin: 0;
}
.section {
  height: 94vh;
}

.main {
  display: flex;
  flex-direction: row;
  justify-content: end;
  flex: 1;
  background: url("/images/entrance.jpg") no-repeat center center/cover;
}

.main-content {
  width: 50%;
}

.footer {
  background-color: #333;
  color: #fff;
  padding: 20px 20px;
  display: flex;
  justify-content: space-between;
}
.footer .allrights {
  display: flex;
  flex-direction: column;
}

.footer .contact {
  display: flex;
  gap: 20px;
}

.footer .contact a {
  color: #fff;
  text-decoration: none;
}

.icon {
  margin-right: 5px;
}

.allrights {
  margin-right: 40px;
}

.nav {
  display: flex;
  position: relative;
  gap: 20px;
}

.list {
  background-color: rgb(0, 0, 0, 0.3);
  width: 30%;
  padding: 20px;
  margin: 0;
}
.list li {
  color: #fff;
  margin-top: 10px;
  margin-left: 20px;
  font-size: 16px;
}

.list h1 {
  color: #fff;
}

.list-mobile {
  background-color: rgb(0, 0, 0, 0.3);
  width: 30%;
  padding: 20px;
  margin: 0;
  display: none;
}

.list-mobile li {
  color: #fff;
  margin-top: 10px;
  margin-left: 20px;
  font-size: 16px;
}

.list-mobile h1 {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .footer {
    flex-direction: column;
    align-items: center;
  }
  .footer .contact {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
  }
  .main {
    flex-direction: column;
    background-position: 74%;
  }
  .list {
    display: none;
  }
  .list-mobile {
    width: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .list-mobile li {
    margin-top: 5px;
    margin-left: 20px;
  }
  .list-mobile h1 {
    font-size: 20px;
    margin-top: 0px;
  }
}
