* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Onest", sans-serif;
}

body {
  font-family: "Onest", sans-serif;
  background-color: #000;
  color: #fff;
  display: flex;
  height: 100vh;
}

.container {
  display: flex;
  width: 100%;
  height: 100%;
}

.section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-right: 1px solid #333;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.section > * {
  position: relative;
  z-index: 2;
}

.section.lindora {
  background-image: url("assets/lindora-min.jpg");
  background-size: cover;
  background-position: center;
}
.section.samara {
  background-image: url("assets/samara-min.jpg");
  background-size: cover;
  background-position: center;
}

.section:last-child {
  border-right: none;
}

.logo {
  width: 28%;
  margin-bottom: 50px;
}

.button {
  margin-top: 10px;
  padding: 10px 20px;
  font-size: 16px;
  color: #000;
  background-color: #fff;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: "Onest", sans-serif;
  font-weight: 500;
  text-decoration: none;
}

.button:hover {
  background-color: #ddd;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .section {
    border-right: none;
    border-bottom: 1px solid #333;
    height: 50vh;
  }

  .section:last-child {
    border-bottom: none;
  }

  .logo {
    width: 40%;
    margin-bottom: 20px;
  }
  .button {
    padding: 10px 15px;
    font-size: 14px;
  }
}
