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

.mainbody,
.mainbody > img{
    position: relative;
    height: 100vh;
    width: 100%;
    object-fit: cover;
    max-height: 100vh;
}

.mainbody::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;/* Rectangle 24 */
    width: 100%;
    opacity: 0.6;
z-index: 1
;
    background: linear-gradient(97.54deg, #4D6992 -2.19%, #FE4D4D 100%);
}
.floating-content img{
    width: 140px;
}
.floating-content{
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    max-width: 480px;
    padding: 16px 40px;
    background-color: white;
    border-radius: 16px;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-direction: column;
    justify-content: center;
}
.floating-content h2 {
    font-size: 24px;
    text-transform: uppercase;
}
.floating-content h1{
    font-size: 44px;
    text-transform: uppercase;
    font-weight: 900;
}