.moments-instructions {
    font-family: "Josefin Sans", sans-serif;
    font-size: 18px;
    line-height: 1.5;
    color: #111;

    margin: 20px 60px 0px;

    display: flex;
    align-items: center;
    justify-content: center;
}

#uploadBtn {
    font-family: "Josefin Sans", sans-serif;
    margin: 20px 30px 40px;
    background: #caa489;
    border: 2px solid #76543c;
    color: #fff;
    padding: 1rem 2rem;
    font-size: 20px;
    cursor: pointer;
}

.moment-upload-success {
    /* min-height: 10vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
}


.moments-upload-result-card {
    width: 100%;
    max-width: 520px;
    border-radius: 24px;
    padding: 40px 0px;
    text-align: center;
    /* box-shadow: 0 25px 70px rgba(0, 0, 0, 0.05); */
    background:
        radial-gradient(ellipse at center,
            rgba(41, 228, 110, 0.432) 0%,
            rgba(34, 197, 94, 0.233) 25%,
            rgba(255, 255, 255, 1) 65%);
    /* border: 1px solid rgba(0, 0, 0, 0.2); */
}

.moments-upload-result-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: #22c55e;
    color: white;
    font-size: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.moments-upload-result-card h2 {
    font-family: "Josefin Sans", sans-serif;
    font-size: 22px;
    line-height: 1.5;
    color: #111;
    margin-bottom: 16px;
}

.moments-upload-result-card p {
    color: #555;
    margin-bottom: 25px;
    font-size: 15px;
}

.moments-gallery {
    margin: 20px 0;
}

#momentsSectionUnderConstruction {
    width: 45vw;
}

@media (max-width: 900px) {
    .moments-gallery {
        overflow: hidden;
    }

    #momentsSectionUnderConstruction {
        width: 45rem;
        transform: translateX(-30px);
    }
}