body {
    transition: background-color 0.5s ease;
    background-color: white;
    color: black;
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-height: 100vh;
    margin: 0;
}

body.dark-theme {
    background-color: black;
    color: #FF5733;
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-height: 100vh;
    margin: 0;
}

    body.dark-theme p {
        color: #FF5733;
    }
    body.dark-theme h2 {
        color: #fffefe;
    }

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
}

header {
    position: relative;
}

header nav ul {
    list-style-type: none;
    padding: 0;
}

header nav ul li {
    display: inline;
    margin-right: 20px;
}

header img {
    width: 100%;
    height: auto;
}
main {
    display: flex;
    justify-content: space-around;
}

main section {
    width: 30%;
    text-align: center;
}



.jumbotron {
    position: relative;
    height: 400px;
    background: url('../lib/images/Banner2.jpg') no-repeat top center;
    background-size: cover;
}


.jumbotron-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
}

h1 {
    font-family: 'Creepster', cursive; /* This is a Google font that has a Halloween vibe. You would need to import it at the top of your CSS file or in your HTML file. */
    font-size: 3.5em;
    color: #FF5733; /* A pumpkin orange color. */
    text-shadow: 2px 2px #000; /* Gives the text a bit of a spooky shadow. */
    text-align: center;
    padding: 20px;
}
.theme-switch-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.theme-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.theme-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #444;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

@keyframes slide {
    0% {
        clip-path: polygon(0 0, 100% 0, 100% 0%, 0 0%);
    }

    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

#slide {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    z-index: 9999;
    animation: slide 0.25s forwards;
}

