@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@500&family=Nunito&family=Outfit:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Suranna&display=swap');
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.hero-main{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #031816;
    background-image: url("../asset/image_35-removebg-preview.png");
    background-size: 100%;
    mix-blend-mode: lighten;
    background-position: bottom center;
    background-repeat: no-repeat;
    padding: 175px 0 318px 0;
}
.hero-main h1{
    font-family: 'Suranna';
    font-style: normal;
    font-weight: 500;
    font-size: 88px;
    line-height: 98px;
    text-align: center;
    color: #E8FFFD;
    margin: 61px 0 80px 0;
}
.hero-main div{
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 19px;
}

.hero-main p{
    display: inline-block;
    font-family: 'Be Vietnam Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #D9F0EE;
    margin : 0;
}
.hero-main a {
    text-decoration: none;
    color: #D9F0EE;
}
@media screen and (max-width: 768px) {
    .hero-main {
        padding: 30px;
    }
    img {
        max-width: 100%;
    }
}