@charset "UTF-8";
@import url("/styles/fonts.css");
body, html {
  margin: 0;
  padding: 0;
  background-color: #191b20;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main {
  background: rgba(36, 39, 46, 0.75);
  border: 1px solid #505766;
  border-radius: 10px;
  padding: 50px;
  box-shadow: 0px 5px 20px 0px rgb(0, 0, 0);
  -webkit-backdrop-filter: blur(30px) saturate(2);
          backdrop-filter: blur(30px) saturate(2);
  width: auto;
  margin-top: -150px;
}

h1 {
  font-family: "IBM Plex Sans Condensed", "Roboto", "Helvetica", sans-serif;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 36px;
  font-weight: 700;
}

p, span {
  font-family: "IBM Plex Sans", "Roboto", "Helvetica", sans-serif;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

p:last-child {
  margin-bottom: 0;
}

p {
  margin-top: 30px;
}
p span {
  font-weight: 700;
}

a {
  color: #839edb;
  transition-duration: 0.05s;
  font-size: 16px;
}
a:hover {
  text-decoration: none;
  color: white;
  background: #839edb;
}

.email a {
  font-size: 20px;
}

.headshot {
  width: 150px;
  height: auto;
  border-radius: 100%;
}

.subtitle-items span {
  padding: 0;
  margin: 0;
  display: inline-block;
}
.subtitle-items span:not(:last-child):after {
  content: "•";
  padding-left: 6px;
  padding-right: 6px;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}

.col-1 {
  width: 8.33%;
}

.col-2 {
  width: 16.66%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.33%;
}

.col-5 {
  width: 41.66%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.33%;
}

.col-8 {
  width: 66.66%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.33%;
}

.col-11 {
  width: 91.66%;
}

.col-12 {
  width: 100%;
}

[class*=col-] {
  float: left;
  padding: 15px;
  font-family: "IBM Plex Sans", "Roboto", "Helvetica", sans-serif;
}

@media screen and (max-width: 480px) {
  .wrap {
    align-items: flex-start;
  }
  .main {
    padding: 16px;
    width: calc(100% - 64px);
    margin-top: 12px;
    box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.75);
  }
  h1 {
    font-size: 28px;
  }
  .email a {
    font-size: 16px;
  }
}/*# sourceMappingURL=style.css.map */