body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
}

.container {
    background-image: url('mountain_landscape.webp');
    background-size: cover;
    background-position: center;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.kiosk {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.kiosk h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.kiosk h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.kiosk p {
    font-size: 1.2em;
    margin: 10px 0;
}

.kiosk a {
    color: #007BFF;
    text-decoration: none;
}

.kiosk a:hover {
    text-decoration: underline;
}