.navbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    height: 70px;
    background-color: darkslategrey;
    color: white;
    font-size: 1.5rem;
}

.name {
    display: flex;
    margin-left: 20px;
    padding: 5px;
    width: 200px;
}

.js-dropdown, .react-dropdown {
    position: relative;
    margin-left: 50px;
    height: 100%;
    width: 250px;
    line-height: 70px;
}

.js-dropdown {
    margin-left: 0px;
}

.demos {
    margin-left: 10px;
}

.triangle {
    position: absolute;
    margin-left: 5px;
    top: 50%;
    transform: translateY(-50%);
    height: 0px;
    width: 0px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid white;
}

.dropdown-items {
    position: absolute;
    display: none;
    width: 250px;
    background-color: darkslategray;
    padding: 10px;
    line-height: 100%;
}

.dropdown-items a {
    display: block;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    padding: 2px;
}

.dropdown-items a:hover {
    background-color: gray;
}

/* .contact {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    opacity: 0;
    left: 200px;
    height: 30px;
    width: 150px;
    padding: 5px;
    text-align: center;
    border: 2px solid black;
    background: lightslategray;
    transition: all 600ms cubic-bezier(0.2, 1, 0.2, 1);
}

.contact:before {
    position: absolute;
    content: "";
    height: 0px;
    width: 0px;
    right: 100%;
    border-right: 20px solid black;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
} */

.contact.show {
    opacity: 1;
}

.icons {
    display: flex;
    align-items: center;
    margin-right: 20px;
    margin-left: auto; /* positions icons on right side of flexbox */
    transition: all 1000ms cubic-bezier(0.2, 1, 0.2, 1);
}

.icons:hover {
    margin-right: 15px;
}

.icon {
    height: 50px;
    width: 50px;
    margin-left: 6px;
    transition: all 1000ms cubic-bezier(0.2, 1, 0.2, 1);
}

.icon:hover {
    height: 60px;
    width: 60px;
    background-size: 60px;
}

/* images are saved as squares with white space around - must be clipped into circles */
/* clip %'s change based on image to prevent weird pixel effects */

.icon-LinkedIn, .icon-GitHub, .icon-Email, .icon-Resume {
    background-size: 50px;
    clip-path: circle(48% at 50% 50%);
}

.icon-LinkedIn {
    background-image: url("../Images/LinkedIn.png");
}

.icon-GitHub {
    background-image: url("../Images/GitHub.png");
}

.icon-Email {
    background-image: url("../Images/Email.png");
}

.icon-Resume {
    background-image: url("../Images/Resume.png");
}

/* END NAVBAR */