:root {
    --beige-color: #F0EDDA;
    --blue-color: #628583;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--beige-color);
    color: var(--blue-color);
    font-family: 'Parkinsans', sans-serif;
    min-height: 100vh;
}

.display {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    text-align: center;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin: auto 0;
}

.logo-container img {
    max-width: 100%;
    height: auto;
    width: 450px;
}

.contact-info {
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 800px;
}

.contact-info a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.contact-info a:hover {
    border-bottom-color: var(--blue-color);
}

@media (max-width: 768px) {
    .contact-info p {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .contact-info .separator {
        display: none;
    }
}