﻿* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/*body {
    font-family: Arial, sans-serif;
    background: #fff;
    padding: 50px;
}*/

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
}

.text-section {
    flex: 1;
    padding-right: 40px;

}

    .text-section h1 {
        font-size: 36px;
        margin-bottom: 20px;
        text-align: center;
    }

.highlight {
    background-color: #ff6666;
    color: white;
    padding: 7px 10px;
    border-radius: 11px;
    display: inline-block;
    margin-top: 10px;
    box-shadow: 0 0 0 0 #ff6666, 0 3px 13px -4px #111 !important;
}

.highlight2 {
    background-color: #e6c300;
    color: white;
    padding: 7px 10px;
    border-radius: 11px;
    display: inline-block;
    margin-top: 10px;
    box-shadow: 0 0 0 0 #e6c300, 0 3px 13px -4px #111 !important;
}

.text-section p {
    margin: 25px 0;
    color: #111;
    line-height: 1.6;
    text-align: center;
    font-size: 15px;
}

.image-section {
    flex: 1;
    position: relative;
    padding-left: 25px;
}

    .image-section::before {
        /*content: '';*/
        position: absolute;
        background-color: #ff6666;
        width: 60%;
        height: 100%;
        top: 44px;
        left: 60px;
        z-index: 0;
        border-radius: 20px;
    }

    .image-section img {
        width: 100%;
        /*max-width: 500px;*/
        border-radius: 20px;
        position: relative;
        z-index: 1;
        box-shadow: 0 3px 15px 5px #ff6666 !important;
    }

@media(max-width: 768px) {
    .container {
        flex-direction: column;
        /*text-align: center;*/
    }

    .text-section, .image-section {
        padding: 5px 0;
    }   
}
