.background {
    background-color: #33cefa;
    height: 100vh;
    width: 100vw;
    position: fixed; /* Change to fixed */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -10;
    display: grid;
    padding-top: 2em;
}

.cloud {
    height: 100px;
    position: fixed; /* Change to fixed */
    width: 200px;
}

.stripes-bg {
    height: 100vh;
    width: 100vw;
    position: fixed; /* Change to fixed */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -5;
}

.stripe {
    height: 100vh;
    position: fixed; /* Change to fixed */
    z-index: -5;
}

.stripe.left {
    width: 10vw;
    left: 0;
    background-color: #f80d3a;
}

.stripe.middle {
    background-color: #f80d3a;
    width: 30%;
    height: 100vh;
    position: fixed; /* Change to fixed */
    left: 50%;
    transform: translateX(-50%);
}

.stripe.right {
    width: 10vw;
    right: 0;
    background-color: #f80d3a;
}

.opacity {
    background-color: rgba(0, 0, 0, 0.4);
    height: 100vh;
    width: 100vw;
    position: fixed; /* Change to fixed */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.imgleft {
    position: absolute;
    top: 72%;
    left: 10vw;
    transform: translateY(-50%);
    z-index: 0;
    width: 20%;
}

.imgright {
    position: absolute;
    top: 72%;
    right: 10vw;
    transform: translateY(-50%);
    z-index: 0;
    width: 20%;
}

.noa {
    text-decoration: none; /* Remove underline */
    color: inherit; /* Inherit color from parent */
    transition: color 0.3s ease; /* Smooth transition for color change */
}