@import url('https://fonts.googleapis.com/css2?family=Darker+Grotesque:wght@300..900&display=swap');

body {
    font-family: 'Darker Grotesque', sans-serif;
    font-size: 20px;
    background-color: #f5f5f5;
    color: #282828;
    user-select: none;
}

.container {
    display: flex;
    flex-wrap: wrap;
    height: 100vh;
}

.image-container, .text-container {
    box-sizing: border-box;
}

.image-container {
    flex: 1;
    min-width: 50%;
    height: 100%;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
}

.text-container {
    flex: 1;
    min-width: 50%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.text-container img {
    max-width: 220px;
}

.text-container .from {
    padding: 10px 10px 0 0;
}

@media screen and (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .image-container, .text-container {
        min-width: 100%;
        height: 50vh;
    }

    .text-container {
        height: auto;
    }
}
