body {
  background-color: darkgray;
  font-family: "Poppins", sans-serif;
}
.topnav {
  overflow: hidden;
  background-color: transparent;
  max-width: 100%;
  margin-left: 10%;
  margin-top: 3%;
  font-weight: bold;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px 16px 16px;
  text-decoration: none;
  font-size: 25px;
}

.topnav .icon {
  display: none;
}

.dropdown {
  display: inline-block;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 25px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
  font-weight: bold;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: darkgray;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.topnav a:hover,
.dropdown:hover .dropbtn {
  background-color: #555;
  color: white;
}

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

.dropdown:hover .dropdown-content {
  display: block;
  animation: fadeIn 300ms;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child),
  .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {
    position: relative;
  }
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {
    float: none;
  }
  .topnav.responsive .dropdown-content {
    position: relative;
  }
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}

.intro {
  display: flex; /* Use flexbox to align items */
  align-items: center; /* Center items vertically */
  justify-content: center;
  margin-top: 7%;
}

.intro .intro-text {
  max-width: 40%;
  font-size: 20px;
  text-align: center;
}

img {
  width: 15%;
  margin-right: 7em;
  border-radius: 15em;
  border: 3px dashed beige;
}

.horizontal_dotted_line {
  margin: auto;
  margin-top: 3%;
  border-bottom: 2px dashed black;
  width: 70%;
}

.footer {
  margin-left: 15%;
  margin-top: 3%;
}
li {
  display: inline-block;
  font-size: 20px;
  padding: 20px;
}

li .fa {
  padding: 20px;
  font-size: 40px;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid black;
}

li .fa:hover {
  opacity: 0.7;
}

.fa-linkedin {
  background: #007bb5;
  color: white;
}

.fa-github {
  background: darkgray;
  color: white;
}
