* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f5f5;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#hobb-logo {
    width: 400px;
    fill: #e60000;
}

.bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 3% 5%;
}

.heading-wrapper {
    text-align: left;
}

.hero-heading {
    font-size: 0.8rem;
    line-height: 1.2;
    color: #333;
    font-weight: 700;
}

.eye-1 {
    transition: transform 0.1s ease-out;
    transform: translateX(0px) translateY(0px);
}

#eye {
    width: 40px;
}

@media (max-width: 768px) {
    .hero-heading {
        font-size: 0.6rem;
    }
    
    #hobb-logo {
        width: 150px;
    }

    #eye {
        width: 40px;
    }
    
    .bottom {
        padding: 8% 5%;
    }
}




