
.showcard_left
{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    background-color: rgba(64, 64, 64, .5);
    border-radius: 16px;
    width: 70%; 
    margin: auto;
    margin-top: 24px;
    margin-bottom: 48px;
    padding: 18px;
}

.showcard_right
{
    display: flex;
    flex-direction: row-reverse;  /*This is the only difference from showcard_left*/
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    background-color: rgba(64, 64, 64, .5);
    border-radius: 16px;
    width: 70%; 
    margin: auto;
    margin-top: 24px;
    margin-bottom: 48px;
    padding: 18px;
}

.shadow_div
{
    /*box-shadow: 0 6px 16px 0 rgba(68, 168, 255, 0.2), 0 10px 28px 0 rgba(68, 169, 255, 0.19);*/
    box-shadow: 8px 8px 32px 16px rgba(68, 168, 255, 0.2);
    /*display: inline-block;*/
    /*float: right;*/ 
}

/*.text {
  align-self: flex-end;
  align-self: flex-start;
  width: 25%;
  margin: 28px;
}*/

.showcard_image {
  /*width: 40%;*/
  /*height: 480px;*/
  
  border-radius: 8px;  /*This takes care of the rounded edges for screenshots*/
  margin-left: 24px;
  margin-right: 24px;
  margin-top: auto;
  margin-bottom: auto;  
  /*width: 60%;*/
  max-width: 60%;
  width: auto;
  /*height: auto;*/
  /*object-fit: contain;*/
  box-shadow: 0px 0px 32px 16px rgba(68, 168, 255, 0.2);
}

.title_text {
    color: rgb(76, 168, 255);
}

.paragraph {
    color: rgb(192, 224, 255);
    font-size: small;
}        

.flex_div {
    margin: 28px;
    flex: 30%; 
}            

@media (max-width: 1024px) {
    .showcard_left {
        flex-direction: column;
        width: 92%;        
    }

    .showcard_right {
        flex-direction: column;
        width: 92%;
    }

    .showcard_image {
        margin-left: auto;
        margin-right: auto;
        margin-top: 18px;
        margin-bottom: 18px;
        /*width: 92%;*/        
        max-width: 96%;
        /*width: auto;*/
        /*height: auto;*/
    }
}
