.frontpage-body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.frontpage-logo-container {
    text-align: center;
    margin-bottom: 40px;
}

.frontpage-logo-container img {
    max-width: 300px;
    height: auto;
}

.frontpage-contact-info {
    text-align: center;
    color: #333;
}

.frontpage-contact-info h2 {
    margin: 0 0 10px 0;
    font-size: 24px;
    color: #2c5aa0;
}

.frontpage-contact-info p {
    margin: 5px 0;
    font-size: 18px;
}

.frontpage-contact-info a {
    color: #2c5aa0;
    text-decoration: none;
}

.frontpage-contact-info a:hover {
    text-decoration: underline;
}