@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Jost&display=swap');

body {
    width: 100%;
    background-color: whitesmoke;

    color: black;
    font-family: 'Jost';
}

/* spacing */



.hero h1, .hero h2, .hero h3 {
    margin-bottom: 24px;
}

.my-creative-focus img, .my-process img {
    margin-bottom: 24px !important;
}


.hero {
    
    background-image: url("/2023/hero.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;


    display: flex;
align-items: center;
justify-content: center;
}

.hero img {
    max-width: 100%;
}

.dribbble a {
    color: black;
    font-weight: bold !important;
}

.my-process a {
    text-decoration: none;
    color: #524D64;
}

.video-note {
    /* text-transform: uppercase; */
    letter-spacing: 0.1rem;
    color: #6e6e6e;

}

.video-note:hover {
    cursor: pointer;
    text-decoration: underline;
}

.vid {
    background: linear-gradient(#ECFCF8, #E3FAF4);
    
}

@media (min-width: 768px) {
    .hero {
        min-height: 100vh;
    }

    .my-creative-focus img, .my-process img {
        margin-bottom: 0px !important;
    }

    .my-process img {
        filter: brightness(1.0);
        transition: filter 0.3s ease-in;
    }

    .my-process img:hover {
        filter: brightness(1.075);
        transition: filter 0.3s ease-out;
    }

    .vid {
        background: linear-gradient(#EFEEED, #F6FDFB);
    }


}