@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700,800,900');
body{
    margin: 0px;
    padding: 0px;
    font-family: poppins;
}
a{
    text-decoration: none;
}
*{
    box-sizing: border-box;
}
#main{
    width:100%;
    height: 100vh;
    background-color: #222222;
    position: relative;
}
.bg{
    width:100%;
    height: 100vh;
}
.bg img{
    width:100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.text{
    width:100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: rgba(14,14,14,0.76);
}
.text strong{
    font-size: 2.5rem;
    width:100%;
    text-align: center;
    color: #ffffff;
    line-height: 50px;
}
.text p{
    color: rgba(230,230,230,0.92);
    text-align: center;
    font-size: 1.1rem;
    font-weight: 400;
    margin: 2px;
}
.btn{
    width:200px;
    height: 45px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: #ff9900;
    margin-top: 10px;
    box-shadow: 2px 2px 30px rgba(0,0,0,0.2);
}
.btn:hover{
    background-color: #ff9900;
    transition: all ease 0.3s;
}
.text strong span{
    color: #ff9900;
}
@media(max-width:780px){
    .text strong{
        font-size: 2rem;
        line-height: 40px;
        padding: 0px 10px;
    }
    .text p{
        font-size: 1rem;
    }
    .btn{
        width:180px;
        height: 44px;
    }
}
@media(max-width:520px){
    .text strong{
        font-size: 1.6rem;
        line-height: 30px;
    }
    .text p{
        width:90%;
    }
    .btn{
        margin-top: 20px;
        font-size: 0.9rem;
    }
}
@media(max-width:400px){
    .text strong{
        font-size: 1.3rem;
        line-height: 30px;
    }
} 
