﻿


.flex-container {
    display: flex;
    flex-direction: row;
    font-size: 30px;
    text-align: center;
}

.flex-item-left {
    padding: 10px;
    flex: 50%;
    display: flex;
    flex-direction: column;
    align-items:flex-end;
}

.flex-item-right {
    padding: 10px;
    flex: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;   
  
}

.btns {
    width: fit-content;
    background-color: purple;
    color: white;
    margin: 10px;
    text-align: center;
}

.flex-item-left .text {
    width: 210px;
    font-family: Montserrat, Sans-serif;
    font-weight: 700;
    color: #000;
    text-align: left;
    font-size: 30px;
    text-align: left;
}

.flex-item-left .icon {
    font-size: 100px;
    text-align: left;
    transform: rotateX(180deg);
    top: 0;
}
/* Responsive layout - makes a one column-layout instead of two-column layout */

@media (max-width: 1200px) {
    .flex-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .flex-container .flex-item-left .icon {
            display: none;
        }
    .flex-container .flex-item-left .text,
    .flex-container .flex-item-right .btns {
        width: 100%;
    }
}




@media only screen and (max-width: 600px) {
    .flex-container {
        display: flex;
        flex-direction: column;
        font-size: 30px;
        text-align: center;
        justify-content: center;
        align-items: center;
    }
}




@media(min-width: 360px) and (max-width:550px) {
    .flex-container {
        flex-direction: column;
        width: fit-content;
        align-items: flex-end;
    }

}