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

body {
    font-family: Arial, sans-serif;
    background-color: #2c2c2c;
    color: #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 10px;
}

.container {
    background-color: #3a3a3a;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    padding: 30px;
    max-width: 500px;
    width: 100%;
    text-align: center;
}

.image-wrapper {
    margin-bottom: 20px;
}

.image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

h1 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.description {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 10px;
}

@media only screen and (max-width: 768px) {
    .container {
        padding: 20px;
    }
}
