* {
    font-family: sans-serif;
}

body {
    background-color: rgb(216, 236, 236);
}

.header-nav {
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.4);
    margin: 150px 0 0 785.5px;
    width: 850px;
    height: 35px;
    background-color: rgb(169, 211, 211);
    border-radius: 3px;
}

.header-nav b {
    position: relative;
    top: 7px;
    color: white;
    padding: 7px 0 0 15px;
}

.header-nav-btn {
    width: 170px;
    height: 19px;
    padding: 0 0 0 215px;
}

.header-nav-btn button {
    color: white;
    cursor: pointer;
    background-color: transparent;
    border: none;
    outline: none;
}





.main {
    width: 620px;
    height:  20000px;
    border-radius: 3px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.4);
    background-color: rgb(241, 241, 241);
    position: relative;
    left: 785.5px;
    /* margin: 25px 0 0 33%; */
}

.main-h2 {
    color: darkorange;
    padding: 30px 0 0 20px;
}

.fish-photo {
    width: 560px;
    height: 350px;
    padding: 10px 0 0 20px;
}

.fish-photo img {
    width: 560px;
    border-radius: 5px;
}

.fish-photo p {
    color: rgb(121, 121, 121);
}


.fishs {
    padding: 0 0 0 20px;
}








.right-top-search {
    bottom: 20055px;
    /* margin: 0 0 0 59%; */
    width: 192px;
    height: 65px;
    position: relative;
    border-radius: 3px;
    background-color: rgb(241, 241, 241);
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.4);
    left: 1443.5px;
    border-radius: 3px;
    background-color: rgb(241, 241, 241);
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.4);
}

.right-top-search .search-inp {
    margin: 20px 0 0 20px;
    width: 130px;
    outline: none;
    background-color: transparent;
    border: 1.5px solid rgb(203, 203, 203);
    border-radius: 5px;
}

.right-top-search .search-inp::placeholder {
    color: rgb(158, 158, 158);
    padding: 0 0 0 5px;
}






.left-top-search {
    width: 122px;
    height: 55px;
    position: relative;
    bottom: 20000px;
    left: 650px;
}

.dropbtn {
    width: 122px;
    background-color: #04AA6D;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.4);
}

.dropdown {
    position: relative;
    display: inline-block;
}
  
.dropdown-content {
    display: none;
    transition: 1s;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.3);
    z-index: 1;
}
  
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
  
.dropdown-content a:hover {
    background-color: #ddd;
}
  
.dropdown:hover .dropdown-content {
    display: block;
}
  
.dropdown:hover .dropbtn {
    transition: 0.3s;
    background-color: #3e8e41;
}







