@import url(https://fonts.googleapis.com/css?family=Anonymous+Pro:400,700);

body {
    padding: 2em;
    background-color: black;
    color: #dfdfdf;
    font-family: 'Anonymous Pro';
}
a {
    color: #e33434;
}
h1 {
    text-align: center;
  }
  
p {
line-height: 1.25em;
}
.resume-container {
    max-width: 800px;
    margin: 50px auto;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 8px;
}
.resume-header {
    text-align: center;
}
.resume-section {
    margin-top: 40px;
}
.resume-section h3 {
    border-bottom: 2px solid white;
    padding-bottom: 10px;
}
/* redacted */
.redacted {
  position: relative;
  display: inline-block;
}
.redacted:before {
    content: "";
    position: absolute;
    width: 100%;  /* Solid redaction */
    height: 100%;
    background-color: #dfdfdf;
}
  /*
  .animate-redaction .redacted:before {
    animation: redact-blackout-width 1s ease-in reverse;
  }
  */
.animate-redaction .redacted:before {
    animation: redact-blackout-width 1s ease-in reverse;
}
.right .redacted:before {
  right: 0;
}
.bottom .redacted:before {
  bottom: 0;
}
@-moz-keyframes redact-blackout-width {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
@-webkit-keyframes redact-blackout-width {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
@keyframes redact-blackout-width {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
@-moz-keyframes redact-blackout-height {
  from {
    height: 0%;
  }
  to {
    height: 100%;
  }
}
@-webkit-keyframes redact-blackout-height {
  from {
    height: 0%;
  }
  to {
    height: 100%;
  }
}
@keyframes redact-blackout-height {
  from {
    height: 0%;
  }
  to {
    height: 100%;
  }
}
@keyframes redact-blackout-width-reverse {
    from {
      width: 100%;
    }
    to {
      width: 0%;
    }
  }
  @keyframes redact-blackout-height-reverse {
    from {
      height: 100%;
    }
    to {
      height: 0%;
    }
  }
  /*Button */

.button-30 {
  width: 140px;
  margin-bottom: 10px;
  align-items: center;
  appearance: none;
  background-color: #FCFCFD;
  border-radius: 4px;
  border-width: 0;
  box-shadow: rgba(45, 35, 66, 0.4) 0 2px 4px,rgba(45, 35, 66, 0.3) 0 7px 13px -3px,#D6D6E7 0 -3px 0 inset;
  box-sizing: border-box;
  color: #36395A;
  cursor: pointer;
  display: inline-flex;
  font-family: "JetBrains Mono",monospace;
  height: 48px;
  justify-content: center;
  line-height: 1;
  list-style: none;
  overflow: hidden;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
  text-align: left;
  text-decoration: none;
  transition: box-shadow .15s,transform .15s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  will-change: box-shadow,transform;
  font-size: 18px;
}

.button-30:focus {
  box-shadow: #D6D6E7 0 0 0 1.5px inset, rgba(45, 35, 66, 0.4) 0 2px 4px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
}

.button-30:hover {
  box-shadow: rgba(45, 35, 66, 0.4) 0 4px 8px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
  transform: translateY(-2px);
}

.button-30:active {
  box-shadow: #D6D6E7 0 3px 7px inset;
  transform: translateY(2px);
}