/* Mobile First Media Queries */

/* Base style */

.cherry-bomb-one-regular {
    font-family: "Cherry Bomb One", system-ui;
    font-weight: 400;
    font-style: normal;
}

h1 {
    font-size: 3.66rem;
    text-wrap-mode: nowrap;
}

.hidden-in-mobile {
    visibility: hidden;
}

.shadow {
    filter:
    drop-shadow(0 2.8px 2.2px rgb(0 0 0 / 0.034))
    drop-shadow(0 6.7px 5.3px rgb(0 0 0 / 0.048))
    drop-shadow(0 12.5px 10px rgb(0 0 0 / 0.06))
    drop-shadow(0 22.3px 17.9px rgb(0 0 0 / 0.072))
    drop-shadow(0 41.8px 33.4px rgb(0 0 0 / 0.086));
}

.shadow > img {
    border-radius: 5px;
}

/* Larger than mobile screen */
@media (min-width: 44.0rem) {
    h1 {
        font-size: 6rem;
    }
}

/* Larger than tablet screen */
@media (min-width: 60.0rem) { 
    h1 {
        font-size: 9rem;
    }
}

/* Larger than desktop screen */
@media (min-width: 120.0rem) {  }