body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}

.header-row {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem;
    box-sizing: border-box;
}

.logo {
    max-width: 100%;
    height: auto;
    width: 300px;           /* Desktop size */
}

.phrase-container {
    text-align: center;
    font-size: 1.8rem;
    margin-top: 2rem;
    height: 2.5em;
    overflow: hidden;
    position: relative;
}

#rotating-phrase {
    display: inline-block;
    opacity: 0;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    transform: translateY(10px);
}

#rotating-phrase.visible {
    opacity: 1;
    transform: translateY(0);
}



.banner {
    background-color: #333;
    color: white;
    padding: 1rem;
    text-align: center;
}

.nav-buttons {
    margin-top: 1rem;
}

.button {
    display: inline-block;
    background-color: #0078D7;
    color: white;
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.button:hover {
    background-color: #005fa3;
}

