* {
    border: 0;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

img {
    display: block;
    max-width: 100%;
}

header {
    background-color: #afdbab;
    padding: 10px;
}

h1, h2, p, a, li {
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

header img {
    width: 200px;
}

#menu-links {
    display: none;
}

#desktop-links {
    display: none;
}

.mobile-nav {
    background-color: #6d98ba;
}

.mobile-nav a {
    color: white;
    text-decoration: none;
    font-size: 25px;
    text-align: center;
}

.mobile-nav li {
    padding: 8px;
}

#hamburger-bars {
    font-size: 70px;
    text-decoration: none;
    color: black;
    position: absolute;
    top: 25px;
    right: 30px;
}

main {
    background-color: #d4d4d4;
    padding-bottom: 10px;
}

main img {
    width: 250px;
    border-radius: 15px;
    margin: 0 auto;
    padding: 10px;
}

main h1, main h2, main p {
    padding: 10px 20px 10px 20px;
}

.college {
    width: 500px;
    border: 3px solid black;
    padding: 0;
}

.animal {
    width: 500px;
    margin-top: 10px;
}

.contactinfo p{
    padding: 5px 20px 5px 20px;
}

.contactinfo a {
    color: black;
    text-decoration: none;
}

.snapchat {
    margin: 10px;
}

footer {
    background-color: #c17767;
    padding: 5px;
}

footer img {
    width: 150px;
    margin: 0 auto;
}

.fgrid {
    display: grid;
    grid-template-columns: auto auto;
}

.fnav a {
    text-decoration: none;
    color: white;
    list-style-type: none;
    font-size: 20px;
    text-align: center;
}

.copyright {
    font-size: 15px;
    text-align: center;
    color: white;
}

/* Slideshow container */
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
}

/* Hide the images by default */
.mySlides {
    display: none;
}

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

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

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

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

.desktop-imgs {
    display: none;
}

@media screen and (min-width: 600px) {
    header img {
        margin: 0 auto;
    }

    #desktop-links {
        display: block;
        background-color: #6d98ba;
    }

    #desktop-links ul {
        display: grid;
        grid-template-columns: auto auto auto auto;
    }

    #desktop-links a {
        text-decoration: none;
        color: white;
        list-style-type: none;
        text-align: center;
        font-size: 30px;
        transition-duration: 0.3s;
    }

    #desktop-links li {
        padding: 5px;
    }

    #desktop-links a:hover {
        color: black;
        background-color: white;
        transition-duration: 0.3s;
    }

    .mobile-nav {
        display: none;
    }

    #hamburger-bars {
        display: none;
    }

    .certs {
        display: grid;
        grid-template-columns: auto auto auto;
    }

    .contactinfo {
        display: grid;
        grid-template-columns: auto auto;
        text-align: center;
    }

    .slideshow-container, .dot {
        display: none;
    }

    .desktop-imgs {
        display: inline;
    }

    .gridone {
        display: grid;
        grid-template-columns: auto auto auto;
    }

    .gridtwo {
        display: grid;
        grid-template-columns: auto auto;
    }

    .college {
        width: 500px;
    }

    .snapchat {
        margin: 0 auto;
    }

    .contactinfo br {
        display: none;
    }

    footer a {
        transition-duration: 0.3s;
    }

    footer a:hover {
        color: black;
        transition-duration: 0.3s;
    }


}