@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


.parent {
    width: 100vw;
    height: 100vh;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    padding: 0;
    font-family: "Barlow Semi Condensed", sans-serif;
    color: white;
    font-size: 13px;
}
.blue-white-background {
    width: 120vw;
    height: 140vh;
    margin: auto auto;
    display: flex;
    background-color: #dfedf0;
    align-items:center;
    justify-content:center;
   
}
.div1 {
    grid-area: 1 / 1 / 2 / 3;
    display: flex;
    flex-direction: column;
    background-color: hsl(263, 55%, 52%);

}
img{
    width: 4em;
    border-radius:50%;
    padding:1em;
}
#quote_mark{
    margin-right: 5%;
    border-radius:0;
    width:120px;
    align-self:flex-end;
    position:absolute;
    z-index:1;
}
.top{
    display:flex;
    z-index:3;
}
.shall_be_more_up{
    margin-top:-10px;
}
.status {
    display: flex;
    flex-direction: column;
}
.div2 {
    grid-area: 1 / 3 / 2 / 4;
    display: flex;
    flex-direction: column;
    background-color: hsl(217, 19%, 35%);
}

.div3 {
    grid-area: 1 / 4 / 3 / 5;
    display: flex;
    flex-direction: column;
    background-color: hsl(0, 0%, 100%);
    color:black;
}

.div4 {
    grid-area: 2 / 2 / 3 / 4;
    display: flex;
    flex-direction: column;
    background-color: hsl(0, 0%, 7%);
}

.div5 {
    grid-area: 2 / 1 / 3 / 2;
    display: flex;
    flex-direction: column;
    background-color: hsl(0, 0%, 100%);
    color:black;
}


.big_text{
    z-index:2;
    margin: 5px 15px 5px 15px;
}
.small_text {
    margin: 5px 15px 5px 15px;
}

@media (max-width: 767px) {
    .blue-white-background {
        width: 120vw;
        height: 300vh;
        margin: auto auto;
        display: flex;
        background-color:hsl(214, 17%, 92%);
        align-items: center;
        justify-content: center;
    }
    .parent{
        align-self:flex-start;
        display:flex;
        flex-direction:column;
    }
     .div1,.div2,.div3,.div4,.div5{
      height:auto;
      width:80%;
      border-radius:20px;
      margin:4% 10%;
    }
    .small_text {
        margin: 10px 15px 20px 15px;
    }
}
