@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
  --black: #0c0c0c;
  --white: #f0f0f0;
  --poppins: "Poppins", sans-serif;
  --salmon:#ef8d60;
  --yellow: #f1ce58;
  --green: #60f158;
  --red: #ef3434;
  --gray: #cecece;
}

*{
  margin: 0;
  padding: 0;
  font-family: var(--poppins);
  -webkit-tap-highlight-color: transparent;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px; 
}

/* Scrollbar track (background of the scrollbar) */
::-webkit-scrollbar-track {
  display: none; 
}

/* Scrollbar thumb (the draggable part) */
ul:hover::-webkit-scrollbar-thumb,
div.randomized-list:hover::-webkit-scrollbar-thumb {
  background: #888888b3; 
  border-radius: 10px;  
  border: 3px solid var(--white);
}

/* Scrollbar thumb on hover (changes color when hovered) */
ul:hover::-webkit-scrollbar-thumb:hover, 
div.randomized-list:hover::-webkit-scrollbar-thumb:hover {
  background: #555;  /* Darker color when hovered */
}

::-webkit-scrollbar-button {
  display: none;
}

body::-webkit-scrollbar-thumb{
  border-radius: 10px;
  background: #55555500;
  border: 2px solid transparent;
}

body::-webkit-scrollbar-thumb:hover{
  background: #888;
}
/* end of scrollbar style */

body{
  overflow-y: auto;
  -webkit-user-select: none;  /* Safari */
  -moz-user-select: none;     /* Firefox */
  -ms-user-select: none;      /* Internet Explorer/Edge */
  user-select: none;          /* Standard syntax */

  background: var(--gray);
  margin: 10px 0px;
}

header{
  max-width: 100dvw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 10px;
}

h1{
  width: fit-content;
  height: fit-content;
  color: var(--black);
}

main{
  min-height: 70dvh;
  height: auto;
  max-width: 100dvw;
  margin: 0px 20px;
  display: flex;
  flex-wrap: wrap-reverse;
  justify-content: space-evenly;
  align-items: center;
  gap: 10px;
}

a{
  all: unset;
}

i, button, a{
  cursor: pointer;
}

footer {
  padding: 1.5rem 0;
  text-align: center;
}

footer i{
  font-size: medium;
}

footer a{
  font-size: small;
}

.btnStyle1{
  all: unset;
  width: 100%;
  text-align: center;
  padding: 5px 0;
  font-weight: 500;
  border-radius: 20px;
  border: 1px solid var(--black);
  background: var(--white);
  transition: .2s ease;
}

.btnStyle1:hover{
  transform: translateY(-4px);
  background: var(--green);
  box-shadow: 2px 5px 0 0 var(--black);
}

.btnStyle1:active{
  background: var(--red);
  transform: translateY(0px);
  box-shadow: 0 0 0 0;
}

main section{
  border: 1px solid var(--black);
  padding: 20px;
  margin: 10px 0px;
  max-width: 400px;
  width: 100%;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;

  border-radius: 10px;
}

.redirect{
  gap: 20px;
  padding: 50px 20px;
  transition: .5s ease;
  background: var(--white);
}

.redirect:hover{
  background: var(--yellow);
  box-shadow: 7px 10px 0 0 var(--black);
  transform: translate(-7px, -10px);
}

.redirect a{
  align-content: center;
  width: 100%;
}