/* this contains a hacked together solution to generate the section titles with horizontal lines
*/

/* this applies default styling */
* {
  
}


#header-design {
  height: 50px;
  width: 100%;
  background-color: #333;
  position: relative;
}

#about-me {
  text-align: center;
}

.section-text {
  font-family: Times New Roman;
  font-size: smaller;
  text-align: left;
}


.multi-col-text {
  display: flex;
  justify-content: space-between;
}

.left-side-text {
  text-align: left;
  margin-left: 2em;
}

.center-side-text {
  text-align: center;
}

.right-side-text {
  text-align: right;
  margin-right: 2%;
}

#footer-design{
  height: 50px;
  background-color: #333;
  clear: both;
  position: relative;
  margin-top: 5%;
}

#footer-text {
  font-family: Times New Roman;
  float: right;
  color: #FFFFFF;
  margin-right: 1em;
  margin-bottom: 1em;
}


.section-title-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-title {
  font-size: 1.2rem;
  font-weight: bold;
}

hr {
  flex: 1;
  margin: 0 2%;
}

div.mylist {
  text-align: left;
}

ul.myUL {
  display: inline-block;
  text-align: left;
  margin-left: 2em;
}

