body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: sans-serif;
    text-align: center;
     display: flex;
    justify-content: center;
    align-items: center;
}

.body{
    overflow: hidden;
}


.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://mutualfundtrust.ca/img/mft-ca-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.shield-image {
    max-width: 300px; /* Adjust as needed */
    width: 80%;
    display: block;
    margin: 0 auto 20px;
}

h1 {
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.enter-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: white;
    color: red;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: 1px solid red;
}

.enter-button:hover {
    background-color: #f0f0f0;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: black;
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 0.8em;
}

.footer a {
    color: white;
    text-decoration: none;
}