* {
    padding: 0;
    margin: 0;
    font-family: sans-serif;
}
.hero{
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.582),rgba(0, 0, 0, 0.623)),url(images/minecraft-snow.gif);
    background-position: center;
    background-size: cover;
    text-align: center;
    position: relative;
}
.title{
    margin-top: 20px;
    width: 60%;
    display: inline-block;
    margin: 150px auto 0;
    color: #fff;
    text-align: center;
}
.title h1{
    margin-bottom: 30px;
}
.title p{
    font-size: 13px;
    line-height: 22px;
}
.row{
    width: 85%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.col{
    flex-basis: 22%;
    text-align: center;
    color: rgb(46, 46, 46);
}
.counter-box1{
    width: 100%;
    height: 100%;
    background: rgb(54, 184, 184);
    padding: 20px 0;
    border-radius: 5px;
    box-shadow: 0 0 20px -4px #66676c;
}
.counter-box2{
    width: 100%;
    height: 100%;
    background: rgb(218, 228, 75);
    padding: 20px 0;
    border-radius: 5px;
    box-shadow: 0 0 20px -4px #66676c;
}
.counter-box3{
    width: 100%;
    height: 100%;
    background: rgb(250, 144, 23);
    padding: 20px 0;
    border-radius: 5px;
    box-shadow: 0 0 20px -4px #66676c;
}
.counter-box4{
    width: 100%;
    height: 100%;
    background: rgb(241, 222, 54);
    padding: 20px 0;
    border-radius: 5px;
    box-shadow: 0 0 20px -4px #66676c;
}
h2,span{
    display: inline-block;
    margin: 1px -222;
    font-size: 29px;
    color: rgb(255, 255, 255);
}
.counter-box .fa{
    font-size: 40px;
    color: #009688;
    display: block;
}
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: 20px;
    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: 2px;
    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: 29px;
        font-size: 0.9rem;
    }
}
@media(max-width:400px){
    .text strong{
        font-size: 1.3rem;
        line-height: 30px;
    }
} 















