@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@500;600&family=DM+Sans:wght@400;700&family=Fraunces:opsz,wght@9..144,700&family=Montserrat:wght@500;700&family=Overpass:wght@400;700&family=Rubik:wght@300;400;500&display=swap');

body {
    background-color: hsl(210, 46%, 95%);
    margin: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    font: 'Barlow Semi Condensed';
    font-size: 13px;
    color:hsl(217, 19%, 35%);
}


.container {
    margin:10%;
    justify-content: start;
    align-items: start;   

    grid-template-columns: 3fr 1fr;
    grid-gap: 20px;
    display:grid;
    grid-auto-rows:minmax(100px,auto);
    align-items: stretch;

}

.included{
    display:grid;
    grid-gap: 20px;
    grid-template-columns: 1fr 1fr 1fr;
    

}
.first {
    background-color: hsl(263, 55%, 52%);
    grid-column: 1/3;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 20px 30px 20px 1px hsl(217, 19%, 35%, 10%);
   

    
    
}

.second {
    background-color: hsl(217, 19%, 35%);
    
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 20px 30px 20px 1px hsl(217, 19%, 35%, 10%);
}

.third {
    background-color: hsl(0, 0%, 100%);
    
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 20px 30px 20px 1px hsl(217, 19%, 35%, 10%);
}

.fourth {
    background-color: hsl(219, 29%, 14%);
    grid-column: 2/4;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 20px 30px 20px 1px hsl(217, 19%, 35%, 10%);
}

.fifth {
    background-color: hsl(0, 0%, 100%);
    padding: 2rem;
    margin:0;
    border-radius: 10px;
    box-shadow: 20px 30px 20px 1px hsl(217, 19%, 35%, 10%);
    
}

.white{
    color:hsl(0, 0%, 100%);
}
.img{
    border-radius: 50%;
    height: 30px;
    border:2px solid hsl(0, 0%, 100%);

}
.purple{
    border-color: hsl(263, 55%, 52%)
}
.profile{
    display: flex;
}
.name{
    margin:0 1rem;  
    font-weight: 400;
}
.job{
    margin:3px 1rem;
    font-weight: 400;
    opacity:50%;
}
.text{
    opacity:50%;
    
}
svg{
    position: absolute;
    z-index: 0;
    right: 20%;
    

}
.content{
    position: relative;
}
.content_text{
    position: relative;
    
}
@media (max-width:400px){
    body{
        height: 100%;
    }
    .container {
        margin:10%;
        justify-content: start;
        align-items: start;   
    
        grid-template-columns: 1fr;
        grid-gap: 20px;
        display:grid;
        grid-auto-rows:minmax(100px,auto);
        align-items: stretch;
    
    }

    .included{
        display:grid;
        grid-template-columns: 1fr;
        grid-gap: 20px;
        
    
    }
    .first {
        background-color: hsl(263, 55%, 52%);
        grid-column: auto;
        padding: 2rem;
        border-radius: 10px;
        box-shadow: 20px 30px 20px 1px hsl(217, 19%, 35%, 10%);
        
        
    
        
        
    }
    
    .second {
        background-color: hsl(217, 19%, 35%);
        
        
        padding: 2rem;
        border-radius: 10px;
        box-shadow: 20px 30px 20px 1px hsl(217, 19%, 35%, 10%);
        grid-gap: 20px;
        position: relative;
    }
    
    .third {
        background-color: hsl(0, 0%, 100%);
        
        padding: 2rem;
        border-radius: 10px;
        box-shadow: 20px 30px 20px 1px hsl(217, 19%, 35%, 10%);
        position: relative;
    }
    
    .fourth {
        background-color: hsl(219, 29%, 14%);
        grid-column: auto;
        padding: 2rem;
        border-radius: 10px;
        box-shadow: 20px 30px 20px 1px hsl(217, 19%, 35%, 10%);
    }
    .content_text{
        position: relative;
        
    }
}