
body {
   background-color: #ccc;
  
}

.box{
    border: 1px solid #1abc9c;
    padding: 10px;
}

.main {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 5px;
    align-content: flex-start;
    max-width: 90vw;
   
}

.pic {
    width: 200px;
    padding: 10px;

}

#person {
    width: 30%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    
}

.divider {
  border-bottom: 1px solid #1abc9c;
  margin: 2px 0;
}

.large, .medium {
  background-color: black;
  border: 0;
}

div .navbar {
  width: 100%;
  height: 30px;
}

.navbar {
  overflow: hidden;
  background-color: #333;
   position: sticky;
  position: -webkit-sticky;
  top: 0;
  
}

.navbar a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 20px;
  text-decoration: none;
}


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


.navbar .active {
  background-color: #666;
  color: white;
}

.large {
  height: 10px;
}


.header {
  padding: 10px;
  text-align: center;
  background: #1abc9c;
  color: white;
}

/* Increase the font size of the heading */
.header h1 {
  font-size: 40px;
}

