@font-face {
    font-family: "Helvethaica";
    src: url('assets/fonts/helvethaica-scaled-145.ttf') format('truetype');
}


html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
}

body {
    font-family: "Helvethaica", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: #333;
}

p {
    font-size: 14px;
    color: #000000;
}

.top-bar {
    width: 100%;
    text-align: center;
    height: 65px;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    width: 155px;
    height: auto;
}

.container {
    flex: 1;
    background: #ffffff;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.content {
    flex: 1;
    padding: 28px;
}

.content .title {
    font-size: 18px;
    font-weight: bold;
}

.content .image-container {
    display: flex;
    justify-content: center;
}

.content .image-container img {
    width: 100%;
    height: auto;
    max-width: 800px;
}

.content .button-container {
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.content .button-container a {
    display: inline-block;
    width: 100%;
    max-width: 400px;
    padding: 10px 20px;
    background-color: #D7001C;
    color: white;
    text-decoration: none;
    text-align: center;
}

footer {
    background-color: #000000;
    text-align: center;
    height: 70px;
}

.footer-content {
    max-width: 800px;
    margin: auto;
}

.footer-logos {
    display: flex;
    justify-content: center;
}

.footer-logos img {
    width: 70px;
    filter: grayscale(100%);
    transition: filter 0.3s;
}
