body {
    background-color: bisque;
    box-sizing: border-box;
}
@media (max-width: 500px) {
    .fish {
      font-size: xx-small;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
      text-align: justify;
      
    }}
.container {
    min-height: 100%;
    background-color: darkgray;
    margin: 0 auto;
    width: 1100px;
}
.title {
    text-transform: uppercase;
    text-align: center;
}
.fish {
    background-color: darkcyan;
    list-style: none;
    padding: 0;
    margin: 0 auto;
}
.dictionary__item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: justify;
    font-size: 20px;
    font-weight: 400;
    width: 100%;
    min-height: 200px;
    background-color: #fff;
    border: 2px solid black;
    box-sizing: border-box;
}
.nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    padding: 0;
}
.navcontent {
    width: 20%;
    height: 60px;
    border: 2px solid black;
    text-align: center;
    background-color: tan;
    font-size: 30px;
    font-weight: 500;
    box-sizing: border-box;
}
.navcontent a {
    text-decoration: none;
}
.description {
    min-height: 200px;
    width: 100%;
    background-color: tan;
    border: 2px solid black;
    text-align: center;
    font-size: 30px;
    font-weight: 500;
    box-sizing: border-box;
}
.amfibioi-list {
    background-color: darkcyan;
    list-style: none;
    padding: 0;
    margin: 0 auto;
}
.reptils {
    background-color: darkcyan;
    list-style: none;
    padding: 0;
    margin: 0 auto;
}
img {
    height: 300px;
    min-width: 50%;
    max-width: 50%;
}
h2 {
    margin: 0 auto;
}
.footer {
    margin: 0 auto;
}
.footer a img {
    width: 30px;
    height: auto;
}
.name {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}
.ordoj {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    padding: 0;
}
.names {
    width: 100%;
    height: 60px;
    border: 2px solid black;
    text-align: center;
    background-color: tan;
    font-size: 30px;
    font-weight: 500;
    box-sizing: border-box;
}
.names a {
    text-decoration: none;
}

/* button */

#button {
    display: inline-block;
    background-color: #FF9800;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}
#button::after {
    content: "UP";
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 2em;
    line-height: 50px;
    color: #fff;
}
#button:hover {
    cursor: pointer;
    background-color: #333;
}
#button:active {
    background-color: #555;
}
#button.show {
    opacity: 1;
    visibility: visible;
}

/* Styles for the content section */

.content {
    width: 77%;
    margin: 50px auto;
    /* font-family: 'Merriweather', serif; */
    font-size: 17px;
    color: #6c767a;
    line-height: 1.9;
}
@media (min-width: 500px) {
    .content {
        width: 43%;
    }
    #button {
        margin: 30px;
    }
}
.content h1 {
    margin-bottom: -10px;
    color: #03a9f4;
    line-height: 1.5;
}
.content h3 {
    font-style: italic;
    color: #96a2a7;
}
