* {
  max-width: 1000px;
  margin: auto;
}

body {
  padding: 20px;
}

p {
  font-family: "Cormorant Garamond";
  font-size: 20px;
}

li {
  font-family: "Cormorant Garamond";
  font-size: 15px;
  line-height: 1.25;
}

li + li {
  margin-top: 3px;
}

a {
  color: white;
  text-decoration: none;
}

hr {
  margin-top: 3px;
  margin-bottom: 3px;
}
h1,h3 {
  text-align:center;
}

#resumeborder {
	border-left: 2px solid DarkSeaGreen;
	border-right: 2px solid DarkSeaGreen;
	max-width: 1000px;
	margin: 0 auto;
}
#header {
  height: 2px;
  width: 100%;
  background-color: DarkSlateGray;
  position: relative;
  z-index: 1;
}

#title {
  margin-left: 3%;
}

#footer {
  height: 50px;
  width: 100%;
  background-color: DarkSlateGray;
  clear: both;
  position: relative;
}

#about {
  font-family: "Cormorant Garamond";
  font-size: 20px;
  color: white;
  float: right;
  margin-top: 12px;
  margin-right: 4%;
}

.resume {
  display: inline-block;
  margin-top: 6px;
  margin-bottom: 80px;
  margin-left: 100px;
  width: 80%;
  height: auto; 
}

.box {
  width: 350px;
  height: 150px;
  margin: 10px;
  padding: 25px;
  border: 5px solid black;
}

.nobullets {
  list-style: none;
  text-align:left;
  padding: 10;
}

.sub_header {
  font-size: 20px;  
  text-align: center;
}

.hightlights {
  font-size: 20px; 
  text-align:left;
  margin-bottom: 10px;
  text-decoration: underline;
}

.row {
  display: flex;
}

.column {
  flex: 50%;
}

@media only screen and (max-width: 430px) {
  .resume {
    width: 100%;
    margin-left: 10px;
    margin-right: 10px;
  }
}
/* *************** pop up*************** */
 /* Popup container */
.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

/* The actual popup (appears on top) */
.popup .popuptext {
  visibility: hidden;
  width: 340px;
  background-color: #555;
  color: #fff;
  text-align: left;
  border-radius: 6px;
  padding: 8px 8px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -225px;
}

/* Toggle this class when clicking on the popup container (hide and show the popup) */
.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
} 
.popup ul {
  font-family: "Cormorant Garamond";
  font-size: 20px;
  style="text-align:left;
  padding: 10;
}
.popup li {
  font-family: Arial;
  font-size: 15px;
}