
body, html {
    height: 100%;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f4f1ea;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background-image: url("pattern.png");
    background-repeat: repeat;
    background-size: 436px 177px;
}

.content {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 20px;
}

h1 {
    color: #333;
    font-weight: 600;
    font-size: 2.5em;
    margin-bottom: 20px;
}

p {
    color: #555;
    font-weight: 300;
    font-size: 1.2em;
    line-height: 1.6;
}

@media (max-width: 600px) {
    h1 {
        font-size: 2em;
    }
    p {
        font-size: 1em;
    }
}
