@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;400&display=swap');


* {
    cursor: none;
    user-select: none
}


::selection {
    background-color: rgb(10, 10, 10);
    color: white;
}

body {
    background-color: #e6e6e6;
    overflow: hidden;
}

.box {
    border-radius: 27px;
    background: #e0e0e0;
    box-shadow:  -41px 41px 82px #7d7d7dc1,
                 41px -41px 82px #ffffff;
    width: 100%;
    max-width: 750px;
    height: 500px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    place-content: center;
    flex-direction: column;
    backface-visibility: hidden;
    

}


img.pfp {
    transition: all 0.2s ease;
    width: 170px;
    border-radius: 25px;
    box-shadow: 0 0 5px black;
}

h1 {
    color: black;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.528);
    max-width: fit-content;
    font-family: Poppins;
    font-weight: 400;
    margin-bottom: 0px;
}

p {
    font-weight: 200;
    font-family: poppins;
    text-shadow: 0 0 7px black;
}


.links a {
    margin: 10px;
}

.links img {
    width: 30px;
}

#audio-player {
    user-select: none
  }

#particles-js {
    width: 100%;
    height: 100vh;
}

.boxes {
    display: flex;
    flex-direction: row;
}

.invert-colors {
    filter: invert(100%);
    background-color: rgb(35, 35, 35);
  }

  .invert-colors .box {
    box-shadow:  -23px 23px 39px #c9c9c9,
    23px -23px 39px #d9d9d9;
  }

  .checkbox {
    display: none;
  }
  
  .slider {
    width: 60px;
    height: 30px;
    background-color: lightgray;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    border: 4px solid transparent;
    transition: .3s;
    box-shadow: 0 0 10px 0 rgb(0, 0, 0, 0.25) inset;
  }
  
  .slider::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: #585858;
    transform: translateX(-30px);
    border-radius: 20px;
    transition: .3s;
    box-shadow: 0 0 10px 3px rgb(0, 0, 0, 0.25);
  }
  
  .checkbox:checked ~ .slider::before {
    transform: translateX(30px);
    box-shadow: 0 0 10px 3px rgb(0, 0, 0, 0.25);
  }
  
  .checkbox:checked ~ .slider {
    background-color: #d2d2d2;
  }
  
  .checkbox:active ~ .slider::before {
    transform: translate(0);
  }

  .switch {
    margin-top: 20px;
  }
