body {
  font-size: 12pt;
  font-family: "Nunito";
  margin: 0;
  background-image: url("/img/carpet.gif");
  color: #222222;
  font-weight: 500;
}

.nunito-font {
  font-family: "Nunito", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.container {
  margin: auto;
  width: 1000px;
  height: 100vh;
  border-left: 5px solid #313d4e;
  border-right: 5px solid #313d4e;
  background-color: #fff;
  overflow-x: hidden;
}

.topbg { 
    width: 1000px; /* may not be necessary */
    text-align: center;
}

.content {
  padding: 15px;
  text-align: center;
}

.title {
  font-size: 60pt;
  font-weight: 900;
  color: #313D4E;
  text-shadow: 3px 2px 1px #c0cad8;
  text-align: center;
}

.footer {
  text-align: center;
  font-size: 10pt;
  padding: 10px;
  width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.flex-container {
  display: flex;
  background-color: #f1f1f1;
}

.flex-container > div {
  background-color: dodgerblue;
  color: white;
  width: 100%;
  height: 100%;
  margin: 5px;
  text-align: center;
  line-height: 75px;
  font-size: 30px;
}

.frame {
  width: 100%;
  min-height: 75vh;
  border: 0;
  padding: 0;
}


/* divider */
hr {
border: 1px solid #F791A9;
margin: 2em 15em;
}

/* normal link styles */
.con:link {
  color: #45566e;
  text-decoration-style: solid;
  text-underline-position: under;
}
.con:visited {
  color: #45566e;
  text-decoration-style: solid;
  text-underline-position: under;
}
.con:hover {
  color: #91a2ba;
  cursor: help;
}
.con:active {
  color: #91a2ba;
  cursor: help;
}

/* nav link style */
a:link {
  color: #313d4e;
  text-decoration-style: solid;
  text-underline-position: under;
}
a:visited {
  color: #313d4e;
}
a:hover {
  cursor: help;
  color: #627b9d;
}

a:active {
  cursor: help;
  color: #627b9d;
}

/* scrollbar shit */
/* width */
::-webkit-scrollbar {
  width: 5px;
}
/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
/* Handle */
::-webkit-scrollbar-thumb {
  background: #b1bfce; 
  border-radius: 3em;
  padding: 5px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #b1bfce; 
}

ul {
 text-align: center;
 list-style-type: none;
 margin: 0;
 padding: 0;
 overflow: hidden;
 margin-top: -1em;
}

li {
  display: inline;
}

li a, .dropbtn {
 display: inline-block;
 color: #313D4E;
 text-align: center;
 padding: 10px 6px;
 text-decoration: underline;
 text-underline-position: under;
 text-decoration-thickness: 1px;
 font-size: 14pt;
 font-weight: 900;
 /* background-color: lightgrey; */
}

li a:hover, .dropdown:hover .dropbtn {
  /* background-color: lightgrey; */
  text-decoration: underline;
 text-underline-position: under;
 text-decoration-thickness: 1px;
 color: #627b9d;
}

li.dropdown {
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 105px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  border-radius: 1em;
}

.dropdown-content a {
 color: #313D4E;
 padding: 3px 3px;
 text-decoration: none;
 display: block;
 text-align: center;
 font-weight: 700;
}

.dropdown:hover .dropdown-content {
  display: block;
  padding: 5px;
}

.goCenter {
  text-align: center;
  color: white;
  font-weight: bold;
}