/*Footer Styles*/
footer {
  grid-area: footer;
  background-color: rgb(3, 10, 29);
  height: 100%;
  color: white;
}

.footer-div {
  display:flex;
  justify-content: space-between;
  margin-right: 35px;
  column-gap: 20px;
 
}

.nav-link ul {
  list-style-type: none;
  margin-bottom: 20px;
}

.nav-link li a {
  text-decoration: none;
  color: white;
}

.nav-link li {
  margin-bottom: 10px;
}

.nav-link li a:hover {
  color: rgb(78, 73, 73);
}


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

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ad8f55;
  width: 250px;
  height: 100px;
  z-index: 1;
  color: black;
  box-shadow: 4px 4px 10px #ad8f55;

}

.dropdown-content a {
  display: block;
  margin-left: 20px;
  margin-top: 7px;
}

.dropdown-content a:hover {
  color: black;
}

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

.footer-div p {
  margin-bottom: 0;
}

.footer-div hr {
  margin-bottom: 10px;
}

.image-cycle {
  max-width: 90%;
  max-height: 100%;
  margin-top: 15px;
  display: none;
}

.social-media-icon {
  display: flex;
  justify-content: center;
  margin-top: 100px;
  margin-bottom: 0;
}

.social-media-icon a {
  color: white;
  font-size: 30px;
  align-items: center;
  margin-right: 20px;
  justify-content: center;
}

.social-media-icon a:hover {
  color: rgb(78, 73, 73);
}

.copyright p {
  text-align: center;
  margin-top: 5px;
  font-size: 13px;
  color: rgb(99, 90, 90);
}

.contact-me {
  width: 100px;
}

@media (min-width: 575px) {
 .image-cycle {
    max-width: 90%;
    max-height: 100%;
    margin-top: 15px;
    display: block;
  }
}