body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('Wall.png') no-repeat center center fixed;
    background-size: cover;
    filter: blur(8px) brightness(0.5);
    z-index: -1;
}

.container {
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    max-width: 90%;
    box-sizing: border-box;
    z-index: 1;
}

h1 {
    color: #d9534f;
    font-size: 2em;
    margin: 0.5em 0;
}

p {
    margin: 10px 0;
    font-size: 1em;
}

.contact {
    margin-top: 20px;
    font-size: 1em;
}

.logo {
    max-width: 200px;
    margin-bottom: 20px;
    width: 100%;
    height: auto;
}

@media (min-width: 768px) {
    .container {
        max-width: 600px;
    }
    h1 {
        font-size: 2.5em;
    }
    p, .contact {
        font-size: 1.2em;
    }
}
