* {
  margin: 0;
  padding: 0;
}

.entry {
  border-left: 10px solid cyan;
  padding: 0px 10px 0px 10px;
  border-radius: 0 0px 0px 0;
  margin-bottom: 20px;
  background-color: #202020;
}

.entry h2 {
  margin: 5px auto 2px auto;
}

.a {
  font-family: "Fira Code", monospace;
  font-weight: 500;
  font-size: 1.5em;
  animation: fadein 1s;
  -webkit-animation: fadein 1s;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #101010;
  color: #bbbbbb;
  z-index: 1;
}

body.b {
  font-family: "Fira Code", monospace;
  font-weight: 500;
  font-size: 1.5em;
  animation: fadein 1s;
  -webkit-animation: fadein 1s;
  background-color: #101010;
  color: #bbbbbb;
  padding: 5%;
  padding-left: 10%;
}

h1 {
  font-size: 1em;
}

h2 {
  font-size: 0.8em;
}

h3 {
  font-size: 0.6em;
}

h4 {
  font-size: 0.4em;
}

h5 {
  font-size: 0.2em;
}

p {
  font-size: 0.7em;
  margin-bottom: 15px;
}

hr {
  border: solid 1px;
  margin: 15px 0;
}

ul {
  margin-left: 30px;
}

pre code {
  background-color: #202020;
  border: 1px outset cyan;
  color: #bbbbbb;
  display: block;
  white-space: pre;
  -webkit-overflow-scrolling: touch;
  overflow-x: scroll;
  max-width: 100%;
  padding: 20px;
}

.skills {
  display: flex;
  justify-content: space-evenly;
}

.skills ul {
  padding: 0 3rem 0 0;
  list-style: none;
}

.skills ul li {
  padding: 2px 15px;
  margin: 10px 0;
  font-size: 0.7em;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.skills ul li:hover {
  background-color: #ffffff52;
  color: #101010;
}

code {
  background-color: #202020;
  border: 1px inset cyan;
  white-space: pre;
  -webkit-overflow-scrolling: touch;
  overflow-x: scroll;
  max-width: 100%;
  color: #bbbbbb;
}

footer {
  font-size: 0.5em;
}

blink {
  animation: blinker 2s ease infinite;
}

cyan {
  color: #aff;
}

a {
  color: #6ff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: #ff6666;
}

#links {
  font-size: 0.9em;
}

.btext {
  font-size: 0.75em;
}

/*******************************************/

@keyframes fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@import url("https://fonts.googleapis.com/css2?family=Fira+Code:wght@700&display=swap");

@keyframes blinker {
  50% {
    opacity: 0;
  }
}