h1 {
    color: chocolate;
}

h2 {
    color: chocolate;
}

h3 {
    color: chocolate;
}

body {
    background-image: url('/static/background2.jpg');
    background-repeat: repeat;
}

.slide {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

article {
    min-width: 32em;
    max-width: 32em;
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.checkmark {
    display: inline-block;
    transform: rotate(45deg);
    height: 25px;
    width: 12px;
    border-bottom: 7px solid #78b13f;
    border-right: 7px solid #78b13f;
}