body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 1200px;
    background: rgba(255, 255, 255, 0); /* White background with 50% transparency */
    /* Replace the background image URL with your image path */
    background-image: url('/img/FrontPage.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.wrapper{
    width: 500px;
    background: rgba(255, 255, 255, 0.75); /* White background with 50% transparency */
    text-align: center;
    border-radius: 15px;
    padding: 30px 30px 30px 30px;
    margin-top: -200px;
}

.copyright {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    
}

.copyright p {
    color: white;
}