* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero_container {
    width: 100%;
    height: 100vh;
    background-image: url(../img/kinky_bg_mobile.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero_logo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.hero_logo img {
    width: 60%;
} 

.hero_logo h2 {
    width: 320px;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    margin-top: 100px;
    color: white;
    letter-spacing: 1.5px;
} 

.text1 {
    color: #f41962;
    font-weight: 600;
}

.text2 {
    font-weight: 600;
    color: #3bd1b4;
}

@media only screen and (min-width: 800px) {
    .hero_container {
        width: 100%;
        background-image: url(../img/kinky_bg.png);
        background-position: top left;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .hero_logo img {
        width: 500px;
    } 

    .hero_logo h2 {
        width: 500px;
        font-family: "Poppins", sans-serif;
        font-size: 28px;
        font-weight: 400;
        text-align: center;
        margin-top: 100px;
        color: white;
        letter-spacing: 1px;
    } 
  }
