html, body {
    margin: 0;
    padding: 0;
    font-family: 'Cormorant Garamond', serif;
    background-color: #000303;
    color: #fcfcfc;
    text-align: center;
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.hero img {
    max-width: 300px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 15rem #55887e);
}

.hero h1 {
    font-size: 3.5rem;
    color: #e1e4cf;
    margin: 0.5rem 0;
    font-family: 'Cinzel Decorative', serif;
    background: -webkit-linear-gradient(#e1e5cf, #00bc7a);
     /*background: -webkit-linear-gradient(#e1e4cf, #009474);*/
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
     
}

.hero p {
    font-size: 2rem;
    max-width: 600px;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero a.button{
    margin: 6px 0px;
    background-color: #009573;
    color: #E8F1EC;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'EB Garamond', serif;
    text-decoration: none;
}

.hero a.button:hover {
    background-color: #1A5D51;
}

.footer {
    background-color: #003027;
    padding: 1rem 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 1.5rem;
    flex-wrap: wrap;
}

.footer a {
    color: #00bc74;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #fcfcfc;
}

@media (max-width: 600px) {
    .footer {
        gap: 1.5rem;
        font-size: 1.25rem;
    }
}
