.opening-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

body {
  font-family: "Fira", sans-serif;
}

section a {
  color: black;
  -webkit-text-decoration: underline wavy rgba(0, 0, 0, 0.75);
          text-decoration: underline wavy rgba(0, 0, 0, 0.75);
}

section a:hover {
  background-color: black;
  color: white;
  -webkit-text-decoration-color: white;
          text-decoration-color: white;
}

.avatar {
  width: 150%;
}

.main {
  display: none;
}

.opening {
  display: grid;
  margin: 0 2vw;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas: "title title" "... desc";
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  overflow: hidden;
}

.opening-title {
  height: 100%;
  grid-area: title;
  font-size: 20em;
}

.opening-portal {
  display: inline;
  position: relative;
}

.opening-button {
  --btn-transition: ease-out;
  position: absolute;
  top: 0;
  left: 0.085em;
  grid-area: btn;
  border: none;
  outline: none;
  width: 30px;
  height: 30px;
  background-color: red;
  -webkit-border-radius: 90%;
          border-radius: 90%;
  -webkit-transition: all 0.7s var(--btn-transition);
  -o-transition: all 0.7s var(--btn-transition);
  transition: all 0.7s var(--btn-transition);
}

.opening-button:hover {
  -webkit-transform: scale(2, 2);
      -ms-transform: scale(2, 2);
          transform: scale(2, 2);
}

.opening-button:hover:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: white;
}

.opening-button:hover:before {
  opacity: 0.6;
}

.opening-button:hover:active {
  -webkit-transform: scale(1.5, 1.5);
      -ms-transform: scale(1.5, 1.5);
          transform: scale(1.5, 1.5);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.opening-button:before {
  content: "I am aware! *click*";
  font-size: 10px;
  right: -100px;
  display: block;
  opacity: 0;
  position: absolute;
  border: 1px solid black;
  padding: 1px 3px;
  -webkit-transition: opacity 0.7s var(--btn-transition) 0.5s;
  -o-transition: opacity 0.7s var(--btn-transition) 0.5s;
  transition: opacity 0.7s var(--btn-transition) 0.5s;
}

.opening-button:after {
  content: "";
  display: block;
  -webkit-border-radius: 90%;
          border-radius: 90%;
  width: 0;
  height: 0;
  -webkit-transition: all 0.5s var(--btn-transition) 0.1s;
  -o-transition: all 0.5s var(--btn-transition) 0.1s;
  transition: all 0.5s var(--btn-transition) 0.1s;
}

.opening-desc {
  grid-area: desc;
  font-size: 15em;
  opacity: 10%;
}

.name {
  font-size: 2.5em;
  font-family: "Alice", serif;
}

.job {
  font-family: "Courgette", cursive;
  font-size: 1.42em;
  margin: 0.25em 0 0.75em;
}

.contacts {
  font-family: "Fira", sans-serif;
}

.resume-heading {
  font-family: "Alice", serif;
}

.resume-desc {
  font-family: "Fira", sans-serif;
}

.resume [class*="-p"] {
  margin-bottom: 0.5em;
  font-size: 1.25em;
}

.event ul {
  margin-left: 1rem;
}

.event-name {
  font-weight: 600;
}

.event-time {
  font-style: italic;
}

.dislikes-tooltip {
  position: relative;
  display: inline-block;
}

.dislikes-tooltip-text {
  visibility: hidden;
  background-color: black;
  color: #fff;
  text-align: center;
  -webkit-border-radius: 6px;
          border-radius: 6px;
  position: absolute;
  z-index: 1;
  padding: 5px 10px;
  top: 20px;
  right: -38px;
}

.dislikes-tooltip:hover {
  font-weight: bold;
}

.dislikes-tooltip:hover .dislikes-tooltip-text {
  visibility: visible;
}

.articles a {
  text-decoration: none;
  color: black;
  background-color: white;
}

.articles a:hover {
  text-decoration: none;
  color: black;
  background-color: white;
}

@media screen and (max-width: 1023px) {
  .opening {
    grid-template-areas: "title" "desc";
    width: 98vw;
  }
  .opening-title {
    font-size: 7.55rem;
    width: 100vw;
  }
  .opening-button {
    left: 0;
    top: -28px;
  }
  .opening-desc {
    font-size: 6em;
  }
}

@media screen and (max-width: 783px) {
  .opening-title {
    font-size: 3rem;
  }
  .opening-portal {
    position: static;
  }
  .opening-button {
    top: 150px;
    left: 20%;
  }
  .opening-desc {
    font-size: 6em;
  }
}

.twitter:hover {
  opacity: 0.7;
}
