﻿html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    position: relative;
    background-image: url('/images/Backgrounds/Homepageparallax.webp');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 40px;
    color: white;
    z-index: 1;
}

.main-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(50vh); /* 60px adjusts for footer height */
}

.thank-you-page {
    margin-top: 100px;
    margin-bottom: 100px;
    text-align: center;
}

    .thank-you-page a {
        color: aliceblue;
    }

        .thank-you-page a:hover {
            color: #f2a365;
            text-decoration: underline;
        }

footer {
    background-color: black;
    color: white;
    padding: 10px 0;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    left: 0;
}
