:root {
	--primary-color: #12c2b9;
	--secondary: #dbfffe;
	--black: #141414;
	--white: #fff;
	--box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.1);
}* {
    margin: 5px;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

.wrapper {
    position: relative;
    z-index: 1;
    flex: 1;
    
}

iframe {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 170px;
}

.wrapper h1 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.wrapper h1::after {
    content: url('/image/separator.svg');
    display: block;
    width: 10rem;
    margin-inline: auto;
    margin-top: -1rem;
}

.image-container {
    max-width: 520px;
    flex: 0 0 auto;
    margin-right: 20px;
    margin-left: 10px;
}

.content {
    display: flex;
    margin-bottom: 20px;
    margin-left: 20px;
    width: 100%;
}

.text-container {
    background-color: var(--secondary);
    margin-left: 10px;
    border-radius: 15px;
    text-align: justify;
    padding: 20px;
    flex: 1;
    margin-right: 50px;
    margin-top: 70px;
    box-shadow: 2px 2px 8px #333;
}

.text-box {
    color: #000;
}

.text-box h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.text-box pre {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.image-container {
    /* max-width: 520px; */
    min-width: 520px;
    display: inline-flex;
    flex-direction: row;
    min-height: 150px;
    flex: 0 0 auto;
    margin: -40px;
    margin-right: 60px;
    margin-top: 100px;
}

img {
    align-items: center;
    justify-content: center;
    width: 50%;
    height: 350px;
    border: 1px solid #000;
    border-radius: 10px;
    box-shadow: 0px 0px 8px 1px #333,
                0px 0px 5px 2px #333;
}

@media (max-width: 768px) {
    .content {
        flex-direction: column;
        text-align: center;
        overflow: hidden;
    }

    .text-container {
        order: 2;
        margin-top: 20px;
        margin-left: 20px;
    }

    .image-container {
        align-items: center;
        justify-content: center;
        margin-left: -80px;
        max-width: 100%;
        margin-bottom: 20px;
        flex-direction: column;
    }
    .image-container img{
        width: 60%;
        height: 60%;
    }
}
