body {
    background: rgb(17, 17, 17);
  }
  #web-click {
    position:absolute;
    display: none;
  }
  .debold{
    font-weight:normal
  }
  .socials {
  display: flex;
  align-items: center;
  justify-content: center;
  }
  .socials img {
    padding: 5px;
    padding-right: 40px;
  }
  .socials img {
    animation: up_and_down 2s ease infinite;
  }
  @keyframes up_and_down {
    50% {
      transform: translateY(-7px);
    }

    100% {
      
    }
  }
  .wtf {
    justify-content: center;
    width: 150px;
    padding-left: 73px;
    margin-top: -50px;
  }
  .overlay {
    z-index: 1;
    background-color: black;
  }
  .overlay label {
    display: grid;
    place-items: center;
    width: 100vw;
    height: 100vw;
    color: rgb(255, 255, 255);
    font-size: 2rem;
  }
  .no-hover {
    display: block;
  }
  .hover {
    display: none;
  }
  .img-web{
    display: inline-block;
    margin-left: 618px;
    margin-top: 70px;
    width: 100px;

  }
  .fullscreen {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-height: 100vh;
    min-width: 100vw;
  }
  .text-content {
    background: rgba(0, 0, 0, 0);
    display: grid;
    place-content: center;
    text-align: center;
    color: rgb(255, 255, 255);
  }
  .text-content h1 {
    font-size: 80px;
    font-weight: 800;
  }
  .text-content p {
    margin-top: -55px;
    padding-bottom: 31px;
    padding-left: 55px;
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 0.0;
    color: rgb(192, 192, 192);
    display: flex;
  }
  #web-click:checked ~ .overlay {
    animation-fill-mode: forwards;
    animation-name: fade, hide;
    animation-delay: 0s, 600ms;
    animation-duration: 600ms, 1ms;
  }
  #web-click:checked ~ .overlay label {
    animation-fill-mode: forwards;
    animation-name: fade;
    animation-delay: 0s;
    animation-duration: 500ms;
  }
  @media(hover: hover) {
    .hover {
      display: block;
    }
    .no-hover {
      display: none;
    }
  }
  @keyframes fade{
    to {
      opacity: 0;
    }
  }
  @keyframes hide {
    to {
      visibility: hidden;
    }
  }