*{
    margin:0px
}
.overlay{
    background: #000000;
    position: fixed;
    top:0px;
    right:0px;
    bottom:0px;
    left:0px;
    opacity: 0.5;
}
.banner{
    background-image: url('./images/concretepipe.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
}
.content{
    position: relative;
    z-index: 9999;
    color: #ffffff;
    width: 80%;
    margin:auto
}

h1{
    /* font-size: 64px; */
    font: 700 150px/150px 'Lato', sans-serif;
    text-transform: uppercase;
    width: 50%;
}
p{
    width: 60%;
    padding-top:24px;
    font-size: 22px;
    line-height: 30px;
    font-weight: 400;
    font-family: 'Lato', sans-serif;
}
.solid{
    font-size: 32px;
    margin-top: 56px;
}
button{
    padding: 16px 24px;
    font-size: 22px;
    border-radius: unset;
    background: #CC3300;
    border: 1px solid #CC3300;
    color: #ffffff;
    margin-top: 24px;
    box-shadow: unset;
}
button:hover{
    color: #17dda3;
    background-color: #222533;
    border-color: #17dda3;
    cursor: pointer;
}
.logo{
    position: relative;
}
@media(max-width:1200px){
    .banner{
        height: unset
    }
    .content{
        width: 100%;
        padding: 20px;
        text-align: center;
        padding-bottom: 20%;
    }
    .logo{
        width: 80%;
        margin: auto;
    }
    h1{
        /* font-size: 64px; */
        font: 700 32px/32px 'Lato', sans-serif;
        width: 100%;
        margin-top: 16px;
    }
    p{
        width: 100%;
        font-size: 18px;
        line-height: 18px;
    }
    .desc{
        display: none;
    }
    button{
        padding: 14px 24px;
        font-size: 20px;
    }
}