* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: white;
    text-align: center;
    /* Replace the URL below with your image file name */
    background: url('background.jpg') no-repeat center center/cover;
    overflow: hidden;
}

/* Darkens the background image so text pops */
.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* 50% black overlay */
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    padding: 20px;
    max-width: 600px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.links-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.btn {
    text-decoration: none;
    color: white;
    border: 2px solid white;
    padding: 12px 25px;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: bold;
    min-width: 150px;
}

.btn:hover {
    background: white;
    color: #000;
}

/* Specific style for Airbnb to make it stand out */
.btn.airbnb {
    background: #FF5A5F;
    border-color: #FF5A5F;
}

.btn.airbnb:hover {
    background: #e34c51;
    border-color: #e34c51;
    color: white;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    h1 { font-size: 2rem; }
    .links-container { flex-direction: column; align-items: center; }
}