*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --red: #810d15;
  --blue: #163f4c;
}

body {
  min-height: 100dvh;
  overflow: hidden;
}

.split-container {
  display: flex;

  width: 100%;
  height: 100dvh;
}

.split-section {
  position: relative;
  flex: 1;
  overflow: hidden;
  text-decoration: none;
}

.memorial {
  background-color: var(--red);
}

.villa-astrida {
  background-color: var(--blue);
}

.background-container {
  width: 100%;
  height: 100%;

  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.background-image {
  width: 100%;
  height: 100%;

  object-fit: cover;
  filter: brightness(70%);

  transform: scale(1.03);
}

.logo-container {
  width: 200px;

  display: flex;
  justify-content: center;
  align-items: center;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;

  opacity: 0;
}

.logo {
  width: 100%;
  height: auto;
}

.villa-astrida .logo {
  margin-top: 36px;
}

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

  .split-section {
    height: 50dvh;
  }

  .logo-container {
    width: 150px;
  }

  .villa-astrida .logo {
    margin-top: 25px;
  }
}
