html,
body,
p,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
cite,
dt,
dd,
dl {
    margin: 0;
    padding: 0;
}

body {
    color: white;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: grey;
}

#background {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

#background .slide {
    width: 100%;
    height: 100%;
    position: absolute;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    overflow: hidden;
}

#background .active {
    opacity: 1;
}

#calendar {
    font-family: "Montserrat", sans-serif;
    text-shadow: 4px 4px 4px black;
    font-size: 3.75em;
    padding-left: 10px;
}

#clock {
    font-family: "Montserrat", sans-serif;
    font-size: 5em;
    font-weight: 800;
    text-shadow: 5px 5px 5px black;
    padding-left: 10px;
}

#weather {
    position: absolute;
    right: 520px;
    top: 0;
    width: 480px;
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
}

#weather .container {
    border: 1px dotted white;
    background-color: rgba(0, 0, 0, 0.75);
    font-family: "Montserrat", sans-serif;
    border-radius: 12px;
    margin-top: 10px;
    padding-bottom: 20px;
}

#weather .current {
    text-align: right;
    margin: 10px 20px 40px 0;
}

#weather .temp {
    font-size: 5em;
}

#weather .icon {
    width: 180px;
    position: absolute;
    left: 40px;
    padding-top: 20px;
}

#weather .alerts {
    position: absolute;
    left: 10px;
    padding-top: 10px;
}

#weather .alert {
    display: flex;
    margin-bottom: 4px;
    border: 1px dotted white;
    border-radius: 10px;
    background: white;
    padding: 3px 4px;
    background-color: rgba(166, 43, 31, .75);
}

#weather .alert h3 {
    font-size: .65em;
    font-weight: normal;
    line-height: 2em;
}

#weather .alert img {
    width: 20px;
    margin-right: .25em;
}

#weather dt {
    text-align: right;
    text-transform: lowercase;
    font-variant: small-caps;
    border-bottom: 1px dotted white;
    line-height: 10px;
    font-weight: normal;
    padding: .25em 20px;
    margin: 0 0 .5em 0;
}

#weather dd {
    margin: 0 0 10px 0;
    padding: 0 20px 0;
    line-height: 1.5em;
}

#quotes {
    width: 900px;
    position: absolute;
    left: 10px;
    top: 0;
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
}

#quotes .quote {
    margin-bottom: 100vh;
    margin-top: 200px;
    scroll-margin-top: 200px;
    padding: 10px 20px;
    border: 1px dotted white;
    background-color: rgba(0, 0, 0, 0.75);
    border-radius: 12px;
}

#quotes blockquote {
    font-family: "Lora", serif;
    font-style: italic;
    font-weight: lighter;
    font-size: 1.5em;
    line-height: 1.25em;
}

#quotes cite {
    padding-top: .5em;
    line-height: 1em;
    font-size: 1em;
    font-family: "Montserrat", sans-serif;
    display: block;
    text-align: right;
    font-style: normal;
}

#quotes cite::before {
    content: "—";
}

#history {
    position: absolute;
    right: 10px;
    top: 0;
    width: 500px;
    overflow: hidden;
    height: 100vh;
    max-height: 100vh;
    border-style: dotted;
    border-color: white;
    border-width: 0 1px;
}

#history .story {
    padding: 2em;
    background-color: rgba(0, 0, 0, 0.75);
    overflow: hidden;
    border-bottom: 1px dotted white;
}

#history .title-package {
    width: 200px;
    float: right;
    text-align: right;
}

#history .day {
    font-family: "Tangerine", cursive;
    font-size: 2em;
    font-weight: 600;
}

#history .year {
    text-align: right;
    font-size: 3.5em;
    line-height: 1em;
    font-family: "Montserrat", sans-serif;
}

#history .title {
    margin: 0;
    padding: 0;
    font-family: "Lora", serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-size: 1.5em;
    line-height: 1.5em;
}

#history .flourish {
    width: 14em;
    margin: 2em auto;
    display: block;
}

#history .content {
    font-family: "Montserrat", sans-serif;
    line-height: 1.75em;
}

#history .content-image {
    width: 40%;
    float: right;
    margin-left: 10px;
}

#beautiful img {
    animation: opacity 1s ease-in-out;
    border: 4px inset white;
    border-radius: 32px;
    box-shadow: 0 0 32px rgba(0, 0, 0, 0.75);
}

#beautiful img.slide {
    transition: opacity 1s ease-in-out;
    position: absolute;
    left: 10px;
    bottom: 10px;
    max-height: 700px;
    max-width: 900px;
    opacity: 0;
}

#beautiful img.current {
    opacity: 1;
}