body, html {
    background-color: #0082ad;
    font-family: Tahoma;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
}

.header-content {
    margin-left: 25px;
}

.nav-content {
    white-space: nowrap;
}

.nav-content h2,
.nav-content nav {
    display: inline-block;
    vertical-align: middle;
}

.nav-content nav a {
    margin-left: 15px;
    text-decoration: none;
}

.service-box {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    align-items: center; 
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 5px;
    display: flex;
    justify-content: center;
    margin-top: 25px;
    border: 2px solid white;
}

#extra-services {
    text-align: center;
}

.wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 68%;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
}

.slideshow-container {
    position: relative;
    max-width: 1000px;
    margin: auto;
}

.slideshow-image {
    width: 100%;
}

.slideshow-image img {
    width: 100%;
    border-radius: 10px;
}

.left-content, .right-content {
    display: flex;
    align-items: center;
    font-size: 20px;
}

.left-content img, .right-content .blurb {
    margin-left: 10px;
    height: 300px;
    width: 360px;
}

.next-btn,
.prev-btn {
    cursor: pointer;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #2c65ff;
    color: white;
    font-size: 16px;
}

.next-btn {
    margin-left: 20px;
}
.next-btn:hover,
.prev-btn:hover {
    background-color: #034d66;
}

.extra-description {
    font-size: 18px;
    color: white;
    margin-left: 20px;
}

.prev-btn{
    left: 0;
}

.next-btn {
    right: 0;
}


.footer {
    background-color: #034d66;
    color: white;
    text-align: center;
    margin-top: 15px;
    padding: 25px 0;
    width: 100%;
  }

  a {
    color: white;
    text-decoration: none;
}

a:hover {
    color:#00A0C6; 
    text-decoration:none; 
    cursor:pointer;  
}

h2:hover {
    cursor:pointer;
    color: white 
}