* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    height: 100vh;
    overflow: hidden;
}

.container {
    width: 100%;
    height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?q=80&w=2000');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 40px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 30px;
    text-transform: lowercase;
    letter-spacing: 2px;
}

.under-construction {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .under-construction {
        font-size: 1.2rem;
        letter-spacing: 4px;
    }
}
