:root {
    --theme-blue: rgb(6, 41, 129);
    --theme-silver: rgb(192, 192, 192);
    --content-width: 960px;
}

body {
    font-family: 'Patrick Hand', cursive;
    font-size: 125%;
}

header {
    color: white;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

body {
    background-image: url("home.jpg");
    min-height: 100vh;
    background-position: center;
    background-size: cover;
}

img {
    max-width: 100%;
    height: auto;
    margin: auto;
}

.pane {
    display: none;
}

.pad-top {
    padding-top: 20px;
}

.pad-top-thin {
    padding-top: 10px;
}

.pad-bottom {
    padding-bottom: 20px;
}

.centered {
    margin: auto;
    text-align: center;
}

.nav {
    display: flex;
    justify-content: space-between;
    padding: 0 60px;
    background-color: var(--theme-blue);
}

.nav-item {
    color: white;
}

.title-color {
    color: rgb(158, 158, 158);
}

.vert-centered {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card {
    margin-top: 20px;
    background-color: white;
    width: 75%;
    border: 1px solid #ccc;
    border-radius: 16px;
}

.small-font {
    font-size: 12pt;
}

#home {
    display: block;
}

#program {
    display: block;
    width: 80%;
    height: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}

#whenwhere {
    background-color: #cdd7e3;
}

#lodging {
    background-color: #849fbc;
}

#guests {
    background: linear-gradient(rgb(241,243,246) 0%, rgb(62,94,35) 100%);
}

#ourstory {
    background: linear-gradient(rgb(41,118,190) 0%, rgb(183,207,237) 100%);
}

#registry {
    background-color: #2c344b;
    color: white;
}

#coolmath {
    color: white;
    background-color: black;
}

#rsvp-form {
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

#rsvp-loading {
    margin-top: 10px;
}