.header {
    background-color: rgb(255, 255, 255);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-icon {
    font-size: 28px;
    cursor: pointer;
    color: #2c3e50;
}

.dropdown {
    display: none;
    flex-direction: column;
    background-color: rgb(247, 247, 247);
}

.dropdown a {
    line-height: 50px;
    font-family: "Saira Condensed", sans-serif;
    font-size: large;
    text-decoration: none;
    color: black;
    margin-left: 30px;
    margin-right: 30px;
    transition: 0.3s;
    border-top: 1px solid rgb(237, 237, 237);
}

.dropdown a:hover {
    color: rgb(46, 180, 224);
}