/* General Styles */
body {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    font-family: Roboto,  Arial,sans-serif;
    color: #525252;
}

/* Main Container */
.main-container {
    width: 800px;
    padding: 20px;
    border-radius: 10px;
}

.sml, .big, .f {
    padding: 30px;
    font-size: 22px; 
    font-weight:300;
}

.f {
    width: 100%;
    text-align: center;
}

.sml {
    flex: 1;
}

.big {
    flex: 2;
}


/* Content Blocks */
.content-block {
    display: flex;
    gap: 20px;
    margin-bottom: 100px;
    align-items: center;
    border-radius: 30px;
    flex-direction: row;
    flex-wrap: wrap;
}

.text-content {
    flex: 2;
    padding: 20px;
    border-radius: 10px;
}

/* Reverse layout for alternating blocks */
.content-block.reverse {
    flex-direction: row-reverse;
}
