:root {
    --brand-primary-color: #084A6F;
}

body {
    font-family: 'Cormorant Garamond';
    background-image: linear-gradient(to bottom, rgb(255, 255, 255), rgba(255, 255, 255, 0.47)), url("./assets/images/water-bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    margin: 0;
    overflow-x: hidden;
}

header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-top: 4rem;
    text-align: center;
}

header h1 {
    max-width: 20ch;
    color: var(--brand-primary-color);
    font-size: 2rem;
}

.logo {
    width: 60vw;
    max-width: 540px;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 3rem 0rem 3rem 0rem;
}

main p {
    max-width: 38ch;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--brand-primary-color);
    margin-bottom: 5rem;
}

main a {
    text-decoration: none;
    color: white;
    background-color: var(--brand-primary-color);
    padding: 10px 30px;
    border-radius: 2px;
    font-size: 1.5rem;
}

html {
    font-size: 16px; /* This sets the base font size to 16 pixels */
}