html, body {
    width:100%;
    height:100%;
    padding:0;
    margin:0;



    --background-color: #ede8e6;
    --text-color: #19220d;

    font-family: "Crimson Pro";
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    background-color: var(--background-color);
    color: var(--text-color);
}

@media (prefers-color-scheme: dark) {
  html, body {
        --background-color: #19220d;
        --text-color: #ede8e6;
    }
  }


.container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
}

.save-the-date {
    font-family: "Cormorant SC", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 5rem;
    letter-spacing: 0.2rem;
    text-align: center;
    height:46%;
    line-height: 80px;
}

.accent {
    font-size:3rem;
    font-family: "WindSong", cursive;
}

.date {
    font-family: "Open Sans";
    font-weight: 200;
    font-style: normal;
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
}

.info {
    font-weight: 200;
    font-style: italic;
    height: 40%;
    letter-spacing: 0.2rem;
}

.names {
    font-weight: 800;
    font-size: 1.75rem;
    letter-spacing: 0.4rem;
    font-style: normal;
}

.location {
    font-size: 0.75rem;
}