body {
    background-color: #2b2b2b;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

  main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: calc(100% - 40px);
    height: calc(100vh - 40px);
    padding: 20px;
  }

  .centered-img {
    height: 368px;
    width: 499px;
  }

  .content {
    margin-top: 179px;
    margin-bottom: 200px;
    margin-right: 9.5px;
    color: #ffffff;
    font-family: sans-serif;
    font-size: 2em;
  }

  .dropdown {
    position: fixed;
    top: 500px;
    left: 50%;
    font-family: sans-serif;
    transform: translateX(-50%);
    text-align: center;
  }

  .dropdown-button {
    color: #ffffff;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    background-color: #3f3f3f91;
    min-width: 45px;
    border-radius: 12px;
    padding: 4px;
  }

  .dropdown-button:hover {
    transform: translateY(2px);
  }

  .dropdown-content {
    left: -25px;
    display: none;
    position: absolute;
    margin-top: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    font-size: 14px;
    min-width: 80px;
    border-radius: 8px;
    padding: 10px;
    font-family: sans-serif;
    animation: fadeIn 0.5s ease forwards;
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .dropdown:hover .dropdown-content {
    display: block;
  }

  .dropdown-content a {
    display: block;
    color: #fff;
    padding: 10px 0;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.44s ease-in-out;
    margin-top: 8px;
  }

  .dropdown-content a:hover {
    color: #c9c9c9;
  }

  .center {
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 200px;
    border-radius: 5px;
  }

  #overlay-toggle {
    position:absolute;
    display: none;
  }

  .overlay {
    z-index: 1;
    background-color: hsl(0, 0%, 14%);
  }

  .overlay label {
    display: grid;
    place-items: center;
    width: 100vw;
    height: 100vw;
    color: rgb(255, 255, 255);
    font-size: 2.5rem;
  }

  .no-hover {
    display: block;
  }

  .hover {
    display: none;
  }

  .fullscreen {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-height: 100vh;
    min-width: 100vw;
  }

  #overlay-toggle:checked ~ .overlay {
    animation-fill-mode: forwards;
    animation-name: fade, hide;
    animation-delay: 0s, 800ms;
    animation-duration: 1s, 0.5ms;
  }

  #overlay-toggle:checked ~ .overlay label {
    animation-fill-mode: forwards;
    animation-name: fade;
    animation-delay: 0s;
    animation-duration: 300ms;
  }

  @media(hover: hover) {
    .hover {
      display: block;
    }
    .no-hover {
      display: none;
    }
  }

  @keyframes fade{
    to {
      opacity: 0;
    }
  }
  
  @keyframes hide {
    to {
      visibility: hidden;
    }
  }