body,
html {
  font-family: "Ubuntu", sans-serif;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  font-size: 22px;
  text-decoration: none;
}
.flex-container {
  display: flex;
  flex-direction: column;
}
#icon {
  display: none;
}
.ham {
  display: none;
}
#map {
  height: 350px;
}
a:link {
  color: inherit;
}
.fa-linkedin-square {
  font-size: 60px;
  color: rgb(255, 255, 255);
}
.fa-instagram {
  font-size: 60px;
  color: rgb(255, 255, 255);
}

/* Navigation */
.navbar {
  background-color: #7c99ac;
  width: 100%;
  display: block;
}

.logo {
  text-align: center;
  padding: 0;
  margin: 0;
  color: white;
}
.navbar div:last-child {
  float: left;
  font-size: 22px;
  color: rgb(255, 255, 255);
  text-align: center;
  text-decoration: none;
}
.navbar a {
  float: right;
  font-size: 22px;
  color: rgb(255, 255, 255);
  text-align: center;
  padding: 14px;
  text-decoration: none;
}

/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.navbar.sticky {
  position: fixed;
  top: 0;
}

/* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
.navbar.sticky + .content {
  padding-top: 60px;
}

.dropdown {
  float: right;
  overflow: hidden;
}

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

.navbar a:hover,
.dropdown:hover .dropbtn {
  background-color: #92a9bd;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  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;
}

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

.dropdown:hover .dropdown-content {
  display: block;
}
a.anchor {
  display: block;
  position: relative;
  top: -200px;
  visibility: hidden;
}
/* Home Section */
#home {
  text-align: center;
  padding: 50px 0;
  background-color: #ffefef;
}
h1,
h2,
b {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7c99ac;
  flex: 1;
}
h3 {
  color: #92a9bd;
}
#block {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex: 1;
  margin-top: 10px;
  margin-bottom: 10px;
}

#block a {
  text-decoration: none;
}
#block .content {
  flex: 1;
  padding-left: 5%;
  padding-right: 5%;
}

#block .profilepic {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
#block .profilepic img {
  width: 80%;
  height: 80%;
  border-radius: 50%;
}
#block .profile {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
#block .profile img {
  width: 70%;
  height: 70%;
  border-radius: 5%;
  /* box-shadow: 5px 5px 5px black; */
}
#block .personal img {
  width: 80%;
  height: 60%;
  /* box-shadow: 5px 5px 5px black; */
}
#mobile {
  background-color: #7c99ac;
}

@media only screen and (max-device-width: 769px) {
  .ham {
    display: block;
  }
  #block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  #mobile {
    display: none;
    flex-direction: column-reverse;
    background-color: #7c99ac;
  }
  .dropdown {
    overflow: hidden;
    font-size: 22px;
  }
  .navbar.sticky {
    position: fixed;
    top: 0;
  }
  .navbar a {
    float: right;
    font-size: 22px;
    padding: 14px;
    text-decoration: none;
    text-align: left;
  }
  #block .personal img {
    width: 98%;
    height: 60%;
    /* box-shadow: 5px 5px 5px black; */
  }
}
