@media only screen and (max-width: 500px) {
  .resume {
    height: 400px;
  }
}
@media only screen and (min-width: 500px) {
  .resume {
    height: 600px;
  }
}
.resume {
  overflow: visible;
  margin: auto;
  justify-content: center;
  display: flex;
  width: 95%;
}

@media only screen and (max-width: 800px) {
  .button {
    width: 60%;
  }
  .button:hover {
    width: 60%;
  }
}
@media only screen and (min-width: 800px) {
  .navbox {
    width: 60%;
  }
  .bodybox {
    width: 60%;
  }
  .button {
    width: 40%;
  }
  .button:hover {
    width: 40%;
  }
  .resume {
    height: 600px;
  }
}
body {
  background: CornflowerBlue;
  color: whitesmoke;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.active {
  color: whitesmoke;
}

.inactive {
  color: #52d7ff;
}

.centered {
  text-align: center;
}

.padded {
  padding-top: 25px;
  padding-bottom: 25px;
}

.navbox {
  text-align: center;
  border: 5px solid #52d7ff;
  border-radius: 10px;
  background-color: #2a7dfc;
  padding-top: 10px;
  padding-bottom: 10px;
  margin: auto;
  filter: drop-shadow(8px 8px 10px darkcyan);
}

.centered-img {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  height: auto;
  filter: drop-shadow(8px 8px 10px darkcyan);
  border: 0px dashed #52d7ff;
  max-width: 100%;
  max-height: 100%;
}

img {
  max-width: 90%;
  max-height: 20em;
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  border-radius: 5px;
  border: 0.2em dashed #52d7ff;
}

/*.circle_img {
  float: left;
  clip-path: circle(40%);
  shape-outside: circle(45%);
}*/
div {
  justify-content: center;
  align-items: center;
}

h1 {
  text-align: center;
  text-decoration: underline;
}

h2 {
  text-align: center;
  text-decoration: underline;
}

h3 {
  text-align: center;
  text-decoration: underline;
}

h4 {
  padding-left: 2em;
  padding-right: 2em;
}

h5 {
  padding-left: 2em;
  padding-right: 2em;
}

p {
  justify-content: left;
  text-align: left;
  padding-left: 2em;
  padding-right: 2em;
}

.blog-list {
  list-style-position: inside;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.blog-item {
  display: flex;
  flex-direction: column;
  width: 60%;
  margin: auto;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/*
li::marker {
  content: "> ";
  color: $logoLightColor;
}*/
/* unvisited link */
a:link {
  color: #52d7ff;
}

/* visited link */
a:visited {
  color: #52d7ff;
}

/* mouse over link */
a:hover {
  color: darkorange;
}

/* selected link */
a:active {
  color: orange;
}

.button {
  font-size: 2em;
  text-align: center;
  border: 5px solid #52d7ff;
  border-radius: 10px;
  background-color: #2570e2;
  padding-top: 5px;
  padding-bottom: 5px;
  display: inline-block;
  margin: auto;
  filter: drop-shadow(8px 8px 10px darkcyan);
  transition-duration: 150ms;
}

.button:hover {
  color: whitesmoke;
  font-size: 2em;
  text-align: center;
  border: 5px solid orange;
  border-radius: 10px;
  background-color: darkorange;
  padding-top: 5px;
  padding-bottom: 5px;
  display: inline-block;
  margin: auto;
  filter: drop-shadow(8px 8px 10px darkorange);
  transition-duration: 150ms;
}

.bodybox {
  border: 5px solid #52d7ff;
  border-radius: 10px;
  background-color: #2a7dfc;
  padding-top: 10px;
  padding-bottom: 10px;
  margin: auto;
  filter: drop-shadow(8px 8px 10px darkcyan);
}

hr {
  border: none;
  border-top: 0.2em dashed #52d7ff;
  height: 0px;
  margin-left: 2em;
  margin-right: 2em;
  color: #2a7dfc;
}

/*# sourceMappingURL=main.css.map */