@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "Roboto", sans-serif;
    color: #393E46;
    margin: 0;
    padding: 0;
    background-color: #EEEEEE;
}

header {
    padding: 24px;
    background-color: #222831;
    color: #FFF;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

nav a {
    color: #FFF;
    text-decoration: none;
}

nav a:hover {
    background-color: #00ADB5;
}

main {
    margin: 0 24px;
}

h1 {
    font-family: "Dancing Script", cursive;
}

h2 {
    font-family: "Libre Baskerville", serif;
    font-size: 32px;
    text-align: center;
}

.subtitle {
    text-align: center;
}

h3,
h4,
h5,
h6 {
    font-family: "Libre Baskerville", serif;
    font-size: 24px;
}

p {
    font-size: 16px;
}

iframe {
    display: block;
    margin: 0 auto;
}

blockquote {
    font-family: "Libre Baskerville", serif;
    margin: 24px;
    text-align: center;
}

mark {
    padding: 2px;
    background-color: #00ADB5;
}

footer {
    margin: 24px;
    padding: 24px;
    text-align: center;
}

hr {
    margin: 40px;
}