@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Montserrat', sans-serif;
    display: grid;
    place-content: center;
    height: 100vh;
}

.container__web{
    padding: 0px 20px;
    width: 100%;
    min-width: 350px;
    text-align: center;
}

img{
    width: 80%;
}

.logo{
    width: 45%;
    display: block;
    padding-left: 20px;
    margin-bottom: 20px;
}

h1{
    color: #E7503B;
    position: relative;
    margin: 0 auto;
}

h1::after,
h1::before{
    content:'';
    position: absolute;
    width: 240px;
    height: 25px;
    top: 8px;
    right: 50px;
    background-color: #E7503B;
}

h1::before{
    left: 50px;
}

p{
    text-transform: uppercase;
    margin-top: 10px;
    font-weight: bold;
    font-size: 1.5rem;
    color: #242424;
}

@media (width <= 860px){
    h1::after,
    h1::before{
    content: none;
}
    h1{
        font-size: 2.3rem;
        border-bottom: 15px solid #E7503B;
    }

    p{  
        font-size: 1rem;
        font-weight: 600;
    }

    .logo{
        margin: 0 auto;
    }

}

@media (width <= 600px){
    .logo{
        width: 80%;
    }
}

