body {
    background-color: black;
}

h1 {
    text-align: center;
    color: whitesmoke;
    font-size: 4em;
}

nav {
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
}

nav li {
    display: inline;
    padding: 10px;
}

nav a {
    color: whitesmoke;
    font-size: 2em;
    text-decoration: none;
    transition: color 0.3s ease;
}

nav a:hover {
    color: yellowgreen;
    cursor: pointer;
    transform: scale(1.5);
}

.container {
    display: flex;
    align-items: center;
}

img {
    width: 50%;
    height: auto;
    margin-right: 15px;
}

.schedule {
    margin-top: -20px;
}

.weekly-schedule {
    border-spacing: 10px;
    color: whitesmoke;
    font-family: 'Arial', sans-serif;
    font-size: 1.5em;
    text-align: center;
}

.toggle-desc {
    color: rgb(91, 90, 90);
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider::before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%
}

input:checked + .slider {
   background-color: yellowgreen;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    gap: 5px;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background-color: whitesmoke;
    transition: 0.3s;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }

    nav {
        flex-direction: column;
        /*align-items: center;*/
    }

    .nav-toggle {
        display: flex;
    }

    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    nav ul.active {
        display: flex;
    }

    nav li {
        text-align: center;
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid #333;
    }

    nav a {
        font-size: 1.5em;
    }

    .container {
        flex-direction: column;
    }

    img {
        width: 80%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .weekly-schedule {
        font-size: 1em;
    }
}

