.container{
    @media (min-width: 750px) {
    display: flex;
    height: fit-content
    }
}

.content{
    h1 {margin-bottom: 0px;}
    margin: 5%;
    width: 40%;
    @media (max-width: 750px) {
        width: 90%;
    }
    @media (min-width: 750px) {
        margin-top: 0px;
    }
    text-align: center;
    div{
        text-align: left;
    }
}

.text {
    @media (min-width: 750px) {
        font-size: 2em;
        height: 300px;
        line-height: 1.5em;
    }
    #img {
        width: 90%;
        border-radius: 5px;
    }
    @media (min-width: 750px) {
        overflow-y: scroll;
        height: 300px;
        
    }
    else  {
        overflow-y: hidden;
        height: fit-content;
    }
    scrollbar-width: none; 
    &:hover {
        scrollbar-width: thin;
    }

    width: 95%;
    padding: 5px;
    background-color: blue;
    border-radius: 5px;
}