.nav {
    background-color: #f2f2f2;
    padding: 10px;
    text-align: left;
}

.nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    /* overflow: hidden; */
}

.nav li {
    display: inline;
    /* float: left; */
    /* margin-right: 10px; */
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 8px 8px;
    display: inline;
    transition: background-color 1s, color 1s;
}

.nav a:hover {
    background-color: #2b2c2d;
    color: white;
}

.bro_code_bottom {
    /* position: relative; */
    color: blue;
    font-size: 20px;
    font-family: "Roboto", sans-serif;
    /* right: 10px;
    top: 35px; */
}

.box {
    border: 2px solid black;
    /* padding: 10px; */
    /* margin: 10px; */
    margin: auto;
    height: 30px;
    width: 30%;
    background-color: #e2e2e2;
}

#box2 {
    /* padding: 10px; */
    margin: auto;
    width: 50%;
    background-color: #ee9a9a;
    position: relative;
}

#box3 {
    /* padding: 10px; */
    background-color: #93ceb9;
    /* position: relative; */
    position: absolute;
    top: 50px;
    left: 50px;
}

.background-image {
    width: 100%;
    height: 300px;
    background-image: url(images/lake.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
}

#combinators ~ p {
    background-color: #3c64b3; 
}

.dropdown {
    display: inline-block;
}

.dropdown a{
    display: block;
    /* width: fit-content; */
    color: black;
    /* background-color: #93ceb9; */
    text-decoration: none;
}

.dropdown .dropdown-content {
    display: none;
    position: absolute;
    background-color: #d0cbcb;
    min-width: 100px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5);
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover button {
    font-weight: bold;
}

.dropdown a:hover {
    background-color: #bbb7b7;
}