.gm-welcome-fullscreen {
    position: relative;
    width: 100%;
    max-width: none;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    color: #fff;
    clear: both;
}

.gm-welcome-fullscreen__picture,
.gm-welcome-fullscreen__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.gm-welcome-fullscreen__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 115%;
    object-fit: cover;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.gm-welcome-fullscreen__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.gm-welcome-fullscreen__content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 2rem;
}

.gm-welcome-fullscreen__title {
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 1;
    margin: 0 0 1rem;
    color: inherit;
}

.gm-welcome-fullscreen__description {
    font-size: clamp(1.125rem, 2vw, 1.75rem);
    line-height: 1.5;
    margin: 3rem auto;
    max-width: 900px;
    text-shadow: 0 0 5px black;
}

.gm-welcome-fullscreen__scroll {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: inherit;
    cursor: pointer;
    /* 
    border: 0;
    background: transparent;
    font-size: 1rem;
    */
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.5rem;
    padding: 10px 20px;
    border: 3px solid white;
    border-radius: 50px;
    background: rgba(0, 0, 0, .2);
}

.gm-welcome-fullscreen__scroll:hover {
    background: rgba(0, 0, 0, .5);
}

.gm-welcome-fullscreen__arrow {
    width: 48px;
    height: 48px;
    border: 2px solid currentColor;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.gm-welcome-fullscreen--preview {
    min-height: 500px;
    margin-top: 2rem;
}