* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #1e1e1e;
    color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    text-align: center;
}

.container {
    max-width: 600px;
    padding: 20px;
}

h1 {
    font-size: 72px;
    margin-bottom: 20px;
    color: #ff6b6b;
}

p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #cccccc;
}

a {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    text-decoration: none;
    color: white;
    background-color: #61dafb;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

a:hover {
    background-color: #21a1f1;
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://source.unsplash.com/random/1600x900') no-repeat center center;
    background-size: cover;
    filter: blur(8px);
    z-index: -1;
}

@media (max-width: 600px) {
    h1 {
        font-size: 48px;
    }

    p {
        font-size: 16px;
    }

    a {
        padding: 10px 20px;
        font-size: 14px;
    }
}