@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Hedvig+Letters+Serif:opsz@12..24&display=swap');

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    background-color: #f4f4f4; 
}

#header {
    font-size: 22px; 
    margin-bottom: 10px; 
    font-weight: light;
}

p {
    font-size: 24px;
    margin: 5px 0;
}

span {
    font-family: 'Hedvig Letters Serif', serif;
    font-weight: 600;
    color: #333; 
}

a {
    color: inherit;
    text-decoration: none;
}


@media (max-width: 768px) { 
    body {
        font-size: 18px;
    }
}

@media (max-width: 480px) { 
    body {
        font-size: 16px;
    }
}

