picture#stagephoto {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}
img {
    max-width: inherit;
}

.floatcontainer {
    position: relative;
    width: 100%;
}

.content {
    position: absolute;
    top: 0%;
    left: 0%;
    z-index: 2;

    width: 55%;
    height: 100%;
    padding: 4%;
}

h1 {
    font-size: 6rem;
    font-family: Montserrat Black;
    
}

p {
    font-size: 2.5rem;
    line-height: 3.5rem;
}

.content a {
    color: #66f;
    font-family: Montserrat Bold;
    text-decoration: none;
    position: relative;
    display: inline-block; /* Ensure ::after is positioned relative to the whole link */
    vertical-align: middle;
}

.content a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 0.075em;
    background: #66f;
    border-radius: 1em;
    transform: translateX(-50%);
    transition: width 0.4s cubic-bezier(.77,0,.18,1);
    pointer-events: none;
}

.content a:hover::after {
    width: 100%;
    left: 0;
    transform: none;
}

@media screen and (max-width: 788px) {
    picture#stagephoto {
        max-width: 100vw;
        width: 100vw;
        display: block;
    }
    .content {
        top: 100%;
        max-width: 100vw;
        width: 100vw;
        box-sizing: border-box;
    }
}