@import url('https://fonts.googleapis.com/css?family=Roboto:400,400i,500,500i,700,700i,900,900i&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background: #fff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-image: url(../images/banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.main{
    margin-left: 40%;
    width: 50%;
    height: 50vh;
    /*background: rgba(255, 255, 255, 0.534);*/
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /*box-shadow: 0px 0px 2px #2b2b2b69;*/
    border-radius: 5px;
}
img{
    width: 55%;
    height: 120px;
    object-fit: cover;
}
p{
    font-size: 2.5em;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    color: #faa636;
    margin-top: 20px;
    margin-bottom: -10px;
}
h1{
    font-size: 4em;
    font-weight: 800;
    font-family: 'Roboto', sans-serif;
    margin-top: 0px;
    color: #2b2b2b;  
}
@media(max-width:768px){
    .main{
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.534);
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        box-shadow: 0px 0px 5px #2b2b2b94;
        border-radius: 5px;
    }
    h1{
        font-size: 2.5em;
    }
    p{
        font-size: 1.5em;
        font-weight: 500;
        font-family: 'Roboto', sans-serif;
        color: #2d54ff;
        margin-top: 30px;
    }
}
