        body {
            background-color: rgb(31, 0, 0);
            color: aliceblue;
            font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        }

        header {
            margin: 0 auto;
            width: fit-content;
            border: 2px solid white;
            color: aliceblue;
            padding-left: 10px;
            padding-right: 10px;
            margin-top: 20px;
            text-align: center;
            font-size: larger;
        }

        .kaitlyn {
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            gap: 3px;
            justify-content: center;
            border-radius: 10px;
            background-color: rgb(181, 117, 0);
            align-items: center;
            padding-bottom: 5px;
            width: 400px;
            font-size: larger;
            font-family: 'Courier New', Courier, monospace;
            margin: auto;
            margin-top: 15px;
        }

        .kaitlyn img {
            width: 200px;
            height: 200px;
            border: 2px dotted rgb(84, 7, 7);
            padding: 0;
        }

        .kaitlyn h2 {
            margin: 10px;
            margin-bottom: 5px;
        }

        .kaitlyn p {
            margin: 10px;
        }

        .expect,
        .schedule ul li {
            background-color: rgb(181, 117, 0);
            border-radius: 10px;
            padding: 5px;
            font-size: larger;
            text-align: center;
            margin-bottom: 15px;
            list-style-type: none;
            width: auto;
        }

        .schedule ul {
            padding: 0;
            margin: 10px;
            padding-bottom: 8px;
        }

        span {
            font-size: larger;
            font-family: 'Courier New', Courier, monospace;
        }

        .schedule {
            background-color: rgb(222, 186, 138);
            border-radius: 10px;
            text-align: center;
            opacity: 90%;
        }

        .schedule h3 {
            font-size: 30px;
            font-family: 'Courier New', Courier, monospace;
            margin: auto;
            margin-top: 15px;
            padding: 10px;
        }

        .expect ol {
            display: grid;
            grid-template-columns: 1fr 8fr 2fr;
            align-items: center;
            padding-right: 30px;
            justify-items: center;
        }

        .schedule ul {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            justify-items: center;
            align-items: center;
        }

        .expect h3 {
            font-size: larger;
            font-family: 'Courier New', Courier, monospace;
            font-weight: bold;
        }

        .images img {
            height: 200px;
            border: 1px solid;
            border-radius: 50%;
        }

        .images {
            display: grid;
            gap: 30px;
            justify-content: center;
            margin: 20px;
            grid-auto-flow: column;
        }

        figure {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 200px;
            width: 100%;
            background-image: url(../media/inspire-resize.webp);
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
            margin: 0;
        }

        figure a {
            border-radius: 30px;
            border: 1px solid black;
            background-color: rgb(48, 8, 8);
            margin: 10px;
            padding: 30px;
            opacity: 90%;
            font-size: 30px;
        }

        a:link {
            color: aliceblue;
        }

        a:hover {
            color: rgb(250, 248, 159);
        }
        a:active {
            color: orange;
        }

        footer>p {
            color: aliceblue;
            text-align: center;
            border-radius: 20px;
            padding: 10px;
            margin: 10px;
        }