html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.logo {
    margin-top: 20px;
    flex-shrink: 0;
}

.logo img {
    height: 125px;
}

.image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.image img {
    max-width: 50%;
    max-height: 95%;
    object-fit: contain;
}

.footer {
    max-width: 1000px;
    margin-bottom: 50px;
    padding: 25px;
    font-size: 12px;
    line-height: 1.25;
    color: #8a8a8a;
    text-align: center;
    flex-shrink: 0;
}

.footer b {
    color: #0013e2;
}

.footer b:hover {
    text-decoration: underline;
}

.footer a{
    color: #0013e2;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}