@charset "UTF-8";
/* CSS Document */

body {
    background-color: #FFFFFF;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.center-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.top-heading {
    text-align: center;
    font-family: Arial;
    margin: 70px 0 11px 0;
}

h2, h3 {
    text-align: center;
    font-family: Arial;
    margin: 20px 0;
}

.centered-link {
    text-align: center;
    display: block;
    font-family: Arial;
    margin: 20px 0;
}

.bottom-links {
    display: flex;
    justify-content: space-between;
    background-color: #FFFFFF;
    padding: 20px;
}

.bottom-links a {
    text-decoration: none;
    color: #140045;
    font-family: Arial;
    margin: 19px 321px 19px 321px; /* Adjust the margin as needed */
}
