:root {
  /* --primary: #3498db; */
  --primary: #0065F8;
  --link: #f04444;
  --background: #fff;
  --color: #000;
  /* add 20 to the end of the primary color to make it transparent */
  --hover: #0065F820;
}

/* Auto Dark Mode */
/* Comment if you don't want */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: var(--background);
  color: var(--color);
  margin: 0;
}

.video-call,
.chat {
  background-color: var(--primary);
  color: white;
}


a {
  color: var(--link);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.heading {
  color: var(--primary);
}


.hover {
  transition: 0.3s;
  border: 1px solid transparent;
}

.hover p {
  color: var(--primary);
}

.hover:hover {
  background-color: var(--hover);
  border: 1px solid var(--primary);
}

.hover:hover p {
  color: var(--color);
}

.active {
  background-color: var(--hover);
  border: 1px solid var(--primary);
}

button {
  cursor: pointer;
  color: var(--color);
  background-color: var(--primary);
}

button.hover {
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.3);
  border: 1px solid var(--hover);
}

.animate-popin {
  animation: popinMessage 0.4s ease-out forwards;
  opacity: 0;
  transform: scale(0.1) translateY(200px);
  transform-origin: bottom center;
}

.delay-0 {
  animation-delay: 0s;
}

.delay-1 {
  animation-delay: 1s;
}

.delay-2 {
  animation-delay: 2s;
}

.delay-3 {
  animation-delay: 3s;
}



@keyframes popinMessage {
  0% {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}