:root {
    --bg-section: #374057;
    --color-headers: #2c3e50;
    --color-highlight-green: #00AF4E;
    --color-light-gray: #EEEFF2;
}

* {
    font-family: sans-serif;
    padding: 0;
    margin: 0;
    text-decoration: none;
    font-size: 16px;
}

body {
    position: ;
    height: 100vh;
    background-color: var(--bg-section);
    display: flex;
}

.container {
    width: 900px;
    margin-left: 10%;
    padding: 20px;
}

h1 {
    font-size: 2rem;
    color: white;
    text-align: center;
}

/*create slider */
#slider {
    position: relative;
    height: 300px;
    padding: 0;
    margin: 0;
    margin-top: 30px;
    margin-bottom: 30px;
}

.slide {
    /* we position the slide absolutely compared to its parent #slider */
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    /* change the value for a faster or slower transition between slides */
    -webkit-transition: opacity 0.5s;
    -o-transition: opacity 0.5s;
    transition: opacity 0.5s;
}

/* class to show the current slide */
.showing {
    opacity: 1;
    z-index: 2;
}

.slide-text {
    background-color:;
    border-radius: 10px;
    margin: auto;
    padding: 40px;
    padding-left: 60px;
    position: relative;
	height: px;
}

/* create the notch */
.lide-text:after {
    content: '';
    display: block;
    position: absolute;
    bottom: -20px;
    left: calc(50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 26px 0 0;
    border-color: white transparent transparent transparent;
}

/* align the testimonial in the center */
.slide-testimonial {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.slide-img {
    margin: 10px;
}

.slide-img img {
     width: 100px;
    height: 100px; 
    border-radius: 50%;
    border: 4px solid white;
}

.slide-person {
    margin-left: 20px;
}

.slide-person p {
    padding: 5px;
}

/* make the name of the person bold */
.slide-person p:first-of-type {
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

/* make their job title light gray */
.slide-person p:last-of-type {
    color: var(--color-light-gray);
}

/* position the buttons and make them green */
.slider-button {
    cursor: pointer;
    color: white;
    font-weight: bold;
    width: 40px;
    height: 40px;
    background-color: var(--color-highlight-green);
    z-index: 3;
    position: absolute;
    text-align: center;
    border-radius: 20%;
    -webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/*posion the left an right button horizontally */
.button-left {
    position: absolute;
    left: 10px;
}

.button-right {
    position: absolute;
    right: 10px;
}

.oak {
	font-size: 10px;
}

img {
	height: 550px;
	padding-left: 160px;
}
.cover {
	height: 460px;
	padding-left: 0px;
}