body {
    background-image: url(/assets/bg.png);
    margin: unset;
    position: relative;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0px 30px 0px;
}

.hero {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero img{
    width: 30%;
    max-width: 500px;
    height: auto;
}

h1 {
    font-family: "Unbounded", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 4.8vw;
    text-align: center;
    margin: 0px;
}

h2 {
    font-family: "Unbounded", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;
    font-size: 1.5vw;
    margin: 0px;
    text-align: center;
}
h2 span {
    font-family: "Unbounded", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 600;
}
footer {
    position: fixed;
    bottom: 0px;
}
.footer {
    background-color: #111111;
    display: flex;
    justify-content: space-between;
    padding: 15px 0px;
    width: 100vw;
}

.social {
    align-items: center;
    display: flex;
    margin-left: 30px;
}

.social img {
    padding: 5px;
    width: auto;
    height: 1rem;
}

.info {
    font-family: "Unbounded", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: 12px;
    margin-right: 30px;
}
.features {
    padding-bottom: 100px;
}
h2 span {
    background-color:#fff783;
    color:#959595;
    position: relative;
}
h2 span img {
    width: 30px;
    position: absolute;
    bottom: -25px;
    height: auto;
}

@media (max-width: 1024px) {
    h1 {
        font-size: 8vw;
        margin-top: 8px;
    }
    h2 {
        font-size: 3vw;
        margin-top: 8px;
    }
    .hero {
        flex-direction: column;
        align-items: center;
    }
    .hero img {
        width: 35%;
    }
    h2 span img {
        width: 25px;
        position: absolute;
        bottom: -20px;
        height: auto;
    }
}

@media (max-width: 430px) {
    h1 {
        font-size: 9vw;
    }
    h2 {
        font-size: 4vw;
    }
    .hero {
        flex-direction: column;
        align-items: center;
    }
    .hero img {
        width: 50%;
    }
    .social {
        margin-left: 10px;
    }
    .social img {
        padding: 4px;
        height: 0.9rem;
    }
    .info {
        margin-right: 10px;
    }
    .footer {
        padding: 10px 0px;
    }
}

@media (max-width: 390px) {
    h1 {
        font-size: 8vw;
    }
    h2 {
        font-size: 3vw;
    }
    .hero {
        flex-direction: column;
        align-items: center;
    }
    .hero img {
        width: 35%;
    }
}

