:root {
    --dark: #11131c;
}

body {
    background-color: var(--dark);
    margin: 0;
    padding: 0;
    font-family: "Playfair Display", serif;
}

p {
    text-align: center;
    color: #ffffff;
    font-size: 20px;
    font-family: "Playfair Display", serif;

    margin: 0;
}
h1 {
    text-align: center;
    color: #ffffff;
    font-size: 40px;
    font-family: "Playfair Display", serif;

    margin: 0;
}
h2 {
    margin-top: 50px;
    text-align: center;
    color: #ffffff;
    font-size: 30px;
    font-family: "Playfair Display", serif;
}

li {
    color: #ffffff;
    font-size: 20px;
    font-family: "Playfair Display", serif;
}

img {
    border-radius: 10px;
    margin-top: 20px;
    width: 300px;
}

.footnote {
    text-align: center;
    color: #ffffff;
    font-size: 16px;
    font-family: "Playfair Display", serif;
    margin-top: 20px;
}
.footnote::before {
    content: "-----";
    display: block;
    margin-top: 20px;
}

.divider {
    width: 90%;
    height: 1px;
    background-color: #ffffff;
    margin: 100px auto;
}


#hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;


    min-height: 100vh;
    padding-left: 50px;
    padding-right: 50px;
}

.callout {
    margin-top: 20px;
    font-size: 20px;
    font-style: italic;
}


.callout {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background-color: rgba(51, 193, 255, 0.3);
    border-radius: 10px;
    padding: 20px;

    margin-left: auto;
    margin-right: auto;
    margin-bottom: 100px;
}
.callout h1 {
    text-align: left;
    font-size: 24px;
    margin-bottom: 20px;
}
.callout p {
    text-align: left;
    font-size: 14px;
}


.explain-item-text {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}


.explain-item {

    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;


    min-height: 100vh;
    padding-left: 50px;
    padding-right: 50px;
}
.description {
    margin-top: 20px;
    font-style: italic;
    font-size: 16px;
}

.image-example-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    gap: 20px;

    max-width: 80%;

    margin: 40px auto;
}

.left-text h1 {
    text-align: left !important;
}
.left-text p {
    text-align: left !important;
}
.right-text h1 {
    text-align: right !important;
}
.right-text p {
    text-align: right !important;
}