header {
    background-color: rgb(0, 255, 13);
    height: 75px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0px 14px 53px 14px rgba(0,255,41,0.65);
    margin-bottom: 50px;
    margin-left: 5px;
    margin-right: 5px;
    border-radius: 10px;
}

.link {
    color: rgb(0, 81, 255);
}

header .link:link, .link:visited {
    color: rgb(0, 81, 255);
}
header .link:hover {
    color: rgb(0, 22, 218);
}
header .link:active {
    color: rgb(59, 128, 255);
}

about-me p {
    text-align: justify;
    margin-right: 30%;
}



.dropdown {
    position: relative;
    display: inline-block;
  }

.dropdown-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    background-color: rgb(0, 255, 13);
    min-width: 160px;
    box-shadow: 0px 14px 53px 14px rgba(0,255,41,0.65);
    z-index: 1;
    border-radius: 10px;
  }

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }

  /* show dropdown on hover*/
.dropdown:hover .dropdown-content {
    display: block;
  }

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