@import url('https://fonts.googleapis.com/css2?family=Inclusive+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@500&display=swap');

body{
    font-family: 'Inclusive Sans', sans-serif;
}
.container{
    max-width: 600px;
    margin: 0 auto;
}
b{
    font-weight: 400;
    color:#FE1D2B;
}
img{
    width: auto;
    max-height: 90px;
}
h1{
    font-size: 1.5rem;
    font-family: 'Roboto Slab', serif;
    font-weight: 500;
}
.logo-wrapper{
    display: flex;
    gap: 15px;
}
@media(max-width: 768px) {
    .logo-wrapper{
        display: block;
        text-align: center;
    }
    h1 {
        font-size: 1.3rem;
    }
    p{
        text-align: center;
    }
        img {
            width: auto;
            max-height: 120px;
        }
}