body
{   
    background: hsl(233, 47%, 7%);
    font-size: 15px;
    padding-top: 8%;
}

.card{
    margin: auto;
    max-width: 1100px;
    background-color: hsl(244, 38%, 16%);
    border-radius: 10px;
    overflow: hidden;
       
}
.flex-container{
    display: flex;
}

  .col{
    flex-direction: column;
    flex-basis: 100%;
    flex: 1;
    width: 50%;
  }
.column1{
    
    padding-left: 30px;
    padding-right: 55px;
}
.column2{
    
 background-color:hsl(277, 95%, 33%)
}
.main-info
{ 
    text-align: left;
    font-family: 'Inter', sans-serif;
    color: hsl(0, 0%, 100%);
    font-size: 22px;
    font-weight: 700;
}
.highlight{
    color: hsl(277, 64%, 61%);
}
.context{ 
    text-align: left;
    color:hsla(0, 0%, 100%, 0.75);
    font-weight: 400;
    font-size:22px;
    font-family: 'Lexend Deca', sans-serif;
    line-height: 1.7;
    
}
.row1  {
    display: table;
    width: 100%; /*Optional*/
    table-layout: fixed; /*Optional*/
    border-spacing: 10px;

}
.column{
    display: table-cell;
}
.sty{
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Lexend Deca', sans-serif;
    letter-spacing: 1px;
}
.img2{
    display: none;

}
 img{

    width: 100%; /* or any custom size */
    height: 100%; 
    object-fit: cover;   
    opacity: 0.7;
    filter: blur(.5);
 }
 
 .attribution{
    color:hsla(0, 0%, 100%, 0.75);
    padding-top: 5%;
 }
 .attribution a{
    text-decoration: none;
   
 }
   
 /* Media Queries: Tabled Portrait */
 @media only screen and (max-width: 375px)
{

    .flex-container{
        display: flex;
        flex-direction: column-reverse;
        
    
    }
    .card{
        max-width: 350px;
    }
    .main-info, .sty, .context{
        text-align: center;
        font-size: 21px;
    }

    .col{
        
        width: 100%;
        flex: 1;
        flex-basis: 100%;
    }
    .column{
        display: table-row;
    }

    .row{
        text-align: center;
    }

    .column1{
        padding: 0;
    }
 .img1{
     display: none;
  } 
 .img2{
    display: block;
  }
}