/* Placeholder for your custom font */
@font-face {
    font-family: 'ABCFavorit-Book';
    src: url('Fonts/ABCFavorit-Book.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Gambarino-Regular';
    src: url('Fonts/Gambarino-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

:root {
    /* These variables will be controlled by JavaScript */
    --bg-color: #f5eeeb; 
    --text-color: #363231;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: var(--bg-color);
    /* Transition makes the color shift smooth */
    transition: background-color 1.5s ease, color 1.5s ease; 
}

.center-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    position: relative;
}

h3 {
    font-family: 'ABCFavorit-Book', sans-serif; 
    color: var(--text-color);
    margin: 0;
    font-size: 1.2rem;
    transition: color 1.5s ease;
}

.bio-text {
    font-family: 'Gambarino-Regular', serif;
    font-size: 1.6rem;
    color: var(--text-color);
    margin-top: 10px; 
    transition: color 1.5s ease;
}

.email-bottom {
    font-family: 'ABCFavorit-Book', serif;
    font-size: 0.8rem;
    color: var(--text-color);
    line-height: 1rem; 
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    margin: 0 auto;
    transition: color 1.5s ease;
}
