body {
    background-color: gray;
}
h1 {
text-align: center;
    padding-top: 25px;
    color: goldenrod;
    text-decoration: underline;
}

h2 {
    margin: 50px;
}

.proPic {
    height: auto;
    width: 225px;
    border-radius: 500px;
    margin-left: 50px;
    border: solid 5px black;
}

.pshoPic {
     height: 250;
    width: 225;
    border-radius: 500px;
    margin-left: 50px;
    border: solid 5px black;
}

.name {
    font-weight: bold;
    text-decoration: underline;
    padding: 0 0 0 25px;
    font-size: 50px;
    color: darkgoldenrod
}

* {box-sizing: border-box}

.slideshow {
    max-width: 100%;;
    position: relative;
    margin: 0px auto;
    bottom: 30%;
    text-align: center;
}


.mySlides {
    display: none;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    bottom: 30%;
    width: auto;
    margin: 0 auto;
    padding: 16px;
    background-color: darkgoldenrod;
    color: black;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6 ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}
.prex {
    left: 0;
    border-radius: 0px 3px 3px 0;
    margin-top: 30px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin-top: 100px;
    background-color: goldenrod;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6 ease;
    
    
}

.active, .dot:hover {
    background-color: #717171;
}

.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}
img {
    height: auto;
    width: 500px;
    text-align: center;
    align-items: center;
    margin-right: 50px;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: darkgoldenrod;
}

li {
    float: left;
}

li a {
    display: block;
    color: black;
    text-align: center;
    padding: 14px; 16px;
    text-decoration: none;
}

li a:hover {
    background-color: goldenrod;
}