body, html {
    min-height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
    background: linear-gradient(to right, yellow, pink);
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
}

.row {
    display: flex;
    justify-content: center;
    width: 100%;
}

.content {
    max-width: 800px;
    margin: 15px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

@media screen and (max-width: 600px) {
    .row {
        flex-direction: column;
    }
    .content, .new-section {
        width: calc(100% - 40px);
        padding: 10px;
    }
}
