

#dogs img{
    height: 50%;
    width: 50%;
}

body{
    background-color: #fff;
    color: #333;
    width: 100%;
    padding: 0px;
    margin: 0px;
}

.darkMode{
    background-color: #333;
    color: rgb(118, 60, 33);
}

h1{
    margin-left: 50px;
    text-align: start;
    margin-bottom: 30px;
}

h1.darkMode{
    color: #fff;
}

#midText.darkMode{
    color: #fff;
}

#toggleButton{
    background-color: #000;
    color: #fff;
}

/**************** NAV BAR *****************************/

#navContainer{
    width: 100%;
    border-bottom: 3px solid rgb(118, 60, 33);
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    background-color: darkgray;
}

#navContainer ul{
    display: flex;
    list-style: none;
    justify-content: flex-end;
}

#navContainer a{
    text-decoration: none;
    color:inherit;
}

#navContainer li{
    background-color: lightgray;
    border: 2px solid rgb(118, 60, 33);
    border-radius: 10px;
    padding: 10px;
    transition: background-color 1s ease-out, color 1s ease-out;
    margin-right: 10px;
}

#navContainer li:hover{
    background-color: rgb(118, 60, 33);
    color: sandybrown;
}



#toggleButton{
    width: 100px;
}

#dogLogo{
    height: 100px;
    width: 100px;
    position:absolute;
    left: 10px;
}

svg{
    color: red;
}

/***************** END of NAVBAR ***********************/

/***************** DOG STYLES *************************/

main{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#dogs{
    display: flex;
    flex-direction: column;
    width: 80%;
    height: fit-content;
    align-items: center;
    justify-content: center;
    border: 2px solid rgb(118, 60, 33);
    padding-bottom: 30px;
    padding-top: 30px;
    background-color: tan;
}
#dogs.darkMode{
    background-color: rgb(118, 60, 33);
    border: 2px solid tan;
}

#dogContent{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 600px;
    margin-top: 30px;
}
#dogContent2{
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 600px;
}

#breed_image{
    width: 500px;
    height: 400px;
    display: flex;
    justify-content: center;
    border: 2px solid rgb(118, 60, 33);
    margin-bottom: 20px;
}

#name{
    font-size: 20px;
}

#dogForm select{
    color: rgb(118, 60, 33);
    font-size: 25px;
}

#dogForm input{
    height: 30px;
    background-color: lightgray;
    border-radius: 10px;
    color: rgb(118, 60, 33);
    font-weight: bold;
    width: 100px;
    transition: background-color 1s ease-out, color 1s ease-out;
}

#dogForm input:hover{
    background-color: rgb(118, 60, 33);
    color:sandybrown;
}

h2{
    margin-top: 30px;
    margin-bottom: 20px;
}
/****************** END DOG STYLES **********************/

/* JCAROUSEL STYLE SHEET MIN *************************/

.jcarousel-wrapper {
    margin: 20px auto;
    position: relative;
    border: 10px solid #fff;
    width: 300px;
    height: 206px;
    -webkit-border-radius: 5px;
       -moz-border-radius: 5px;
            border-radius: 5px;
    -webkit-box-shadow: 0 0 2px #999;
       -moz-box-shadow: 0 0 2px #999;
            box-shadow: 0 0 2px #999;
}


.jcarousel-wrapper .photo-credits {
    position: absolute;
    right: 15px;
    bottom: 0;
    font-size: 13px;
    color: #fff;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.85);
    opacity: .66;
}

.jcarousel-wrapper .photo-credits a {
    color: #fff;
}

/** Carousel **/

.jcarousel {
    position: relative;
    overflow: hidden;
}

.jcarousel ul {
    width: 10000em;
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
}

.jcarousel li {
    float: left;
}

/** Carousel Controls **/

.jcarousel-control-prev,
.jcarousel-control-next {
    position: absolute;
    top: 200px;
    width: 30px;
    height: 30px;
    text-align: center;
    background: #4E443C;
    color: #fff;
    text-decoration: none;
    text-shadow: 0 0 1px #000;
    font: 24px/27px Arial, sans-serif;
    -webkit-border-radius: 30px;
       -moz-border-radius: 30px;
            border-radius: 30px;
    -webkit-box-shadow: 0 0 2px #999;
       -moz-box-shadow: 0 0 2px #999;
            box-shadow: 0 0 2px #999;
}

.jcarousel-control-prev {
    left: -50px;
}

.jcarousel-control-next {
    right: -50px;
}

.jcarousel-control-prev:hover span,
.jcarousel-control-next:hover span {
    display: block;
}

.jcarousel-control-prev.inactive,
.jcarousel-control-next.inactive {
    opacity: .5;
    cursor: default;
}

/** Carousel Pagination **/

.jcarousel-pagination {
    position: absolute;
    bottom: 0;
    left: 15px;
}

.jcarousel-pagination a {
    text-decoration: none;
    display: inline-block;
    
    font-size: 11px;
    line-height: 14px;
    min-width: 14px;
    
    background: #fff;
    color: #4E443C;
    border-radius: 14px;
    padding: 3px;
    text-align: center;
    
    margin-right: 2px;
    
    opacity: .75;
}

.jcarousel-pagination a.active {
    background: #4E443C;
    color: #fff;
    opacity: 1;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.75);
}

/*JCAROUSEL END STYLE SHEET ******************************/

/************** FOOOTERRRRR ******************************/

#footer{
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    width: 100%;
    margin-top: 50px;
    color: rgb(118, 60, 33);
}