:root{
    --white: rgb(255, 255, 255);
    --blue: rgb(138, 138, 138);
    --pink: rgb(92, 92, 92);
}

body{
    background-color: #111;
    font-family: 'Google Sans', sans-serif;
    color: #fff;
    display: fixed;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    margin: 0;
    
}

.margin-content{
    margin-top: 0vh;
}

.gradient-txt{
    color: transparent;
    font-size: 3rem;
    margin-bottom: 0;
}

.under-txt{
    font-size: 20px;
    margin: 0;
}

.pfp{
    border-radius: 10px;
    width: 95px;
    height: 95px;
}

.grey-link{
  font-size: 20px;
  padding: 3px;
  color: rgb(199, 197, 197);
  transition: all 0.2s ease-in-out;
  background-color: transparent;
}

.grey-link:hover{
  color: white;
  background-color: transparent;
}

.box {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 80px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(137, 207, 240, 0.7);
    -webkit-box-shadow: 0px 0px 15px 5px rgba(137, 207, 240, 0.75);
    -moz-box-shadow: 0px 0px 15px 5px rgb(137, 207, 240);
    box-shadow: 0px 0px 15px 5px rgba(137, 207, 240, 0.75);
    overflow: auto;
    width: 300px;
  }

@media (max-width: 400px){
    .box{
        padding: 30px;
    }
}

.inf{
    bottom: 0;
    position: absolute;
    width: 100%;
}
  
  @keyframes background-pan {
    from {
      background-position: 0% center;
    }
    
    to {
      background-position: -200% center;
    }
  }
  
  @keyframes scale {
    from, to {
      transform: scale(0);
    }
    
    50% {
      transform: scale(1);
    }
  }
  
  @keyframes rotate {
    from {
      transform: rotate(0deg);
    }
    
    to {
      transform: rotate(180deg);
    }
  }
  
  body {
    background-color: rgb(10, 10, 10);
    display: grid;
    height: 100vh;
    margin: 0px;
    overflow: hidden;
    place-items: center;
  }
  
  h1 {
    color: white;
    font-size: 3rem;
    font-family: 'Google Sans', monospace;
    margin: 0px;
    text-align: center;
    white-space: nowrap;
    border-radius: clamp(0.4rem, 0.75vw, 1rem);
    background: linear-gradient(to right, var(--white), var(--blue), var(--pink), var(--white));
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: background-pan 3s linear infinite;
  }

  #overlay-toggle {
    position:absolute;
    display: none;
  }
  .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: 2.5rem;
  }
  @media(hover: hover) {
  .hover {
    display: block;
  }
  .no-hover {
    display: none;
  }
}
  @keyframes fade{
    to {
      opacity: 0;
    }
  }
  @keyframes hide {
    to {
      visibility: hidden;
    }
  }#manipulate {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: center;
    bottom: 35px;
  }
  #overlay-toggle:checked ~ .overlay {
    animation-fill-mode: forwards;
    animation-name: fade, hide;
    animation-delay: 0s, 600ms;
    animation-duration: 600ms, 1ms;
  }
  #overlay-toggle:checked ~ .overlay label {
    animation-fill-mode: forwards;
    animation-name: fade;
    animation-delay: 0s;
    animation-duration: 500ms;
  }
  #center {
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    -webkit-transform:translate(-50%,-50%);
    -moz-transform:translate(-50%,-50%);
    -ms-transform:translate(-50%,-50%);
    -o-transform:translate(-50%,-50%)
  }
  .no-hover {
    display: block;
  }
  .hover {
    display: none;
  }
  .fullscreen {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-height: 100vh;
    min-width: 100vw;
  }
  .bg-video {
    z-index: -1;
  }