*{
    padding: 0;box-sizing: border-box; margin: 0;
}
body{
    
    background: hsla(245, 75%, 80%, 0.25);
    color:#070707;
    font-size: 1rem;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.container{
    width: 50%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
.content{
    display: flex;
    text-align: center;
    height: 45vh;
    line-height: 1;
    flex-direction: column;
    justify-content: space-evenly;
}

.content *{
    padding: .5rem;
}
.title{
    width: 100%;
    border-bottom: 1px solid grey;
    font-weight: bold;
    text-align: center;
    font-size: 2rem;
    margin: 2rem;
}

@media (max-width:768px){
    .title{
        font-size: 1.5rem;
    }
    .container{

        width: 90%;
        margin: 1rem auto;
    }
    .content{
        height:auto;
        font-size: 1rem;
        width: 100%;
        gap: 7px;
        margin: 0;
    }
}

@media (max-width: 450px){
    .title{
        font-size: 1.25rem;
        line-height: 1;
    }
}