
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

html, body{
    margin: 0;
    font-family: "Roboto", sans-serif;
    padding: 0;
}

a{
    text-decoration: none;
}

.logo-box {
    width: 12%;
    margin: 2rem auto;
    position: relative;
    /* float: left; */
}

.main-section {
    /* width: 100%; */
    background-image: url('5577256.jpg');
    /* height: 100vh; */
    background-attachment: fixed;
    text-align: center;
    position: relative;
    padding: 1rem;
   
}

.main-section::after{
    content: '';
    background: #000000ab;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.5;
}

.outer-box{
    position: relative;
    z-index: 9;
    padding: 2rem;
}
.content-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content-box a{
    text-decoration: none;
}

.btn-launch{
    text-decoration: none;
    font-size: 20px;
    padding: 20px;
    background: #ec6642;
    border-radius: 5px;
    margin-top: 1rem;
    box-shadow: 0px 0px 13px #7676768f;
    transition: all 0.5s;
    color: #ffffff;
    display: inline-block;
}
.btn-launch:hover{
    background: #ffa632;
    transition: all 0.5s;
}

.main-title{
    font-size: 60px;
    color: #ffffff;
    margin: 2rem 0 2rem;
    /* background: linear-gradient(to right, #0a91dc, #ff74ba, #ff87d0, #34a0e7); */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
}
.sub-title{
    font-size: 28px;
    color: #ffffff;
    margin: 1rem 1rem 4rem;
}

.hl-box {
    padding: 1.5rem 1rem;
    border: 1px solid #cdcdce;
    border-radius: 8px;
    background: #ffffff;
}

.hl-box img {
    width: 40%;
    padding-bottom: 26px;
}

.hl-box h5{
    font-size: 18px;
}

a {
    color: #ffffff;
}

@media (max-width:600px) {
    .logo-box {
        width: 44%;
    }
    .main-section{
        background-position: 30%;
    }
    .main-title {
        font-size: 40px;
    }
    .sub-title {
        font-size: 22px;
        margin: 1rem 0;
    }
    .outer-box{
        width: 100%;
    padding: 0rem;
    height: 100%;
    }
    .hl-box h5 {
        font-size: 16px;
    }
    .hl-box img {
        padding-bottom: 16px;
    }
    .hl-box {
        padding: 10px;
    }
}