/* Reset */
body {
  margin: 0;
  font-family: 'Lato', Arial, sans-serif;
  background-color: #f5f5f5;
}

/* Navbar */
.navbar {
  background-color: #2c3e50;
  color: white;
  padding: 15px;
  display: flex;
  align-items: center;
}

.navbar h1 {
  font-family: 'Lato', Arial, sans-serif;
  margin: 0;
  margin-right: 20px;
}

/* Links */
.navbar a, .dropbtn {
  font-family: 'Lato', Arial, sans-serif;
  color: white;
  text-decoration: none;
  margin-right: 15px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: white;
  min-width: 160px;
  top: 35px;
  left: 0;
  border-radius: 5px;
  overflow: hidden;
}

.dropdown-content a {
  color: black;
  padding: 10px;
  display: block;
}

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

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

/* Show dropdown when active */
.dropdown-content.show {
  display: block;
}

/* Layout */
.container {
  display: flex;
  padding: 20px;
}

.sidebar {
  width: 25%;
  background: white;
  padding: 15px;
  margin-right: 20px;
  border-radius: 5px;
}

.main {
  width: 75%;
  background: white;
  padding: 15px;
  border-radius: 5px;
}

/* Boxes */
.box {
  background: #eef3f8;
  padding: 10px;
  margin-top: 15px;
  border-radius: 5px;
}

.headshot {
  /*zoom: 0.1; /* 10% of original size */
  width: 200px;
  height: auto;   /* keeps proportions */
  /* max-width: 150px; */
  /* border-radius: 10px; */
  /* display: block; */
  /* margin-bottom: 10px; */
}


h1, h2, h3 {
  font-weight: 700;
}

p, li {
  font-weight: 400;
}