body {
    margin: 0;
    padding: 0;
    background-color: azure;
    margin: 20px;
}

h1 {
    font-size: 2em;
    margin-bottom: 0.5em;
}

h2 {
    font-size: 1.5em;
    margin-top: 2em;
}

.copy {
    margin: 0 5px;
    align-self: flex-end;
    width: 72px;
    font-size: 15px;
    background-color: #fdfdfdd0;
    border-radius: 5px;
    box-shadow: none;
}

pre {
    overflow-x: auto;
    white-space: pre;

}

.example_jsx {
    background-color: black;
    color: #fdfdfdd0;
    padding: 12px;
    border-radius: 5px;
    display: flex;
    flex-flow: column;
}

.example_text {
    font-weight: bold;
    margin-top: 1em;
}

.example_header {
    display: flex;
    justify-content: space-between;
}

.code_title {
    background-color: #fdfdfdd0;
    color: black;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    margin-top: -12px;
    padding-top: 12px;
    padding-left: 10px;
    padding-right: 10px;
}

.jsx_exe {
    background-color: #fdfdfd;
    padding: 1em;
}

.hook {
    color: black;
    font-weight: bold;
    font-size: 18px;
}

.image {
    display: flex;
    flex-direction: column;
}

.images {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}

.image-caption {
    text-align: center;
    margin-top: 5px;
}