@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200..800&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: 'Raleway', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

h1 {
    font-size: 2.5rem;
    font-weight: 500;
    text-align: center;
    padding: 0 0 20px;
    box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.1);
}

section {
    display: flex;

}

section + p {
    text-indent: 20px;
}

#text {
    width: 50%;
    padding: 20px;
    font-size: min(1.4rem, 2vw);
    line-height: 1.8rem;
}

#picture {
    width: 50%;
    display: grid;
    place-items: center;

}

img {
    width: max(75%, 300px);
    height: auto;
}

@media (max-width: 768px) {
    section {
        flex-direction: column-reverse;
    }

    #text {
        width: 100%;
    }

    #picture {
        width: 100%;
    }
}