header {
    background-color: purple;
    color: white;
    height: 25px;
    justify-content: center;
}

nav {
    background-color: purple;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
}

nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    background-color: purple;
}

body {
    display: flex;
    flex-direction: column;
    height: auto;
    font-family: 'Arial', sans-serif;
    background-color: white;
    color: black;
    overflow-y: scroll;
    margin: 0 auto;
    padding: 25px;
}

p {
    color: green;
  }

.container {
    text-align: center;
  }

main {
    padding: 20px;
}

footer {
    background-color: purple;
    color: white;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 10px;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 25px;
}

#slideshow-container {
    width: 800px;
    height: 500px;
}

ul {
    list-style: disc;
    padding-left: 20px;
}

.mySlides {
    display: none;
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active {
    background-color: #f3eeee;
}

.services-text {
    line-height: 1.5;
  }
