* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
  color: #ffffff;
  list-style: none;
}

h1 {
  text-align: center;
  padding: 2rem 0 1rem 0;
}

h2 {
  font-size: 2rem;
  padding-bottom: 2rem;
  white-space: nowrap;
  text-align: center;
}

p {
  font-size: 1.2rem;
  padding: 1rem 0;
}

i {
  font-size: 2rem;
  display: inline-block;
  padding: 0.5rem 0;
  width: 3rem;
  display: inline-block;
  text-align: center;
}

ul#tldr li a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

ul#tldr li:hover i{
  color: var(--color);
  transition: 0.5s;
}

body {
  background: #222;
  display: grid;
  place-items: center;
  height: 100vh;
  position: relative;
}

main {
  max-width: 60%;
  width: 100%;
  padding: 4rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

main .meme {
  width: auto;
  max-width: 100%;
  height: 50vh;
  border-radius: 16px;
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.bot {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;

}

#cv {
  width: auto;
  max-width: 100%;
  height: 50vh;
  transition: 1s;
  opacity: 0;
}

#cv.reveal {
  opacity: 1;
  cursor: pointer;
}

hr {
  transition: 1s;
  transform-origin: center;
  width: 100%;
  transform: scale(0);
  opacity: 0;
  margin: 2rem 0;
}

hr.reveal {
  transform: scale(1);
  opacity: 1;
}

.cv-full {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: #222222d8;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: 1s;
  padding: 2rem;
}

.cv-full img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
}

@media screen and (max-width: 768px) {
  .cv-full {
    padding: 0;
  }
}

.cv-full.reveal {
  opacity: 1;
  pointer-events: all;
}

@media screen and (max-width: 768px) {
  h2 {
    font-size: 1.5rem;
  }
  main {
    max-width: 90%;
  }

  main .meme {
    height: auto;
    max-height: 100%;
  }

  #cv {
    height: auto;
    max-height: 100%;
  }
}