:root {
    --blue: #1a1a52;
    --orange: #F04923;
}

body {
    top: 0px;
    margin: auto;
    padding: 0;
    font-family: 'eurofurence', sans-serif;
    font-family: 'eurofurence light', sans-serif;
    color: var(--blue);
    background-color: whitesmoke;
}

#flowers {
    background-image: url('img/flowers.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: auto;
    width: 50vw;
    aspect-ratio: 3198.82 / 4616.39;
    background-position: center -8vh;
    overflow: hidden;
}
@media (max-width: 600px) {
  #flowers {
    width: 100vw;
    background-position: center;
  }
}

#content {
    position: absolute;
    top: 50vh;
    left: 38%;
    width: 30vw;
    display: flex;
    flex-direction: column;
    font-size: large;
}
@media (max-width: 600px) {
  #content {
    top: 30vh;
    left: 25%;
    width: 60vw;
  }
}

.menu-content {
    gap: 6vh;
}
@media (max-width: 600px) {
    .menu-content {
        gap: 4vh;
  }
}

.reactive {
    cursor: pointer;
    user-select: none;
}
.menu-item {
    display: inline-block;
    font-size: xx-large;
    font-weight: bold;
}


.airbnb-card {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  background-color: #fff;
}

.airbnb-card img {
  width: 100%;
  max-height: 200px;
  object-fit: cover; 
  display: block;
}

.card-content {
  padding: 15px;
}

.card-content h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.card-content p {
  margin: 0 0 12px;
  color: #666;
}

.card-content a {
  text-decoration: none;
  font-weight: bold;
}

#content input[type="checkbox"] {
  transform: scale(1.2);
  accent-color: var(--orange);
}
