body {
  background-color: #2A2F3B;
  color: white;


  /* font-family: "Fuzzy Bubbles"; */
  /* font-family: "Poppins"; */
  font-family: "Fira Code";

  /* font-weight: 400; */
  /* font-style: normal; */
}

::selection {
  background-color: rgba(0, 0, 0, 0.4);
}

img {
  max-width: 100%;

  filter: drop-shadow(4px 2px 4px rgba(0, 0, 0, 0.7));

}

/* non draggable elements */
img {
  -webkit-user-drag: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}


a {
  text-decoration: underline #2a7fff 3px;
  position: relative;
  transition: color 0.3s ease-in-out;
  color: white;
}

a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 3px;
  background: #2a7fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease-in-out;
}

a:hover,
a:focus {
  outline: none;
  opacity: 0.5;

}

a:hover::after,
a:focus::after {
  transform: scaleX(1);
  transform-origin: left;
}

a:visited {
  color: white !important;
}




fieldset {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.5rem;

  margin: 2rem;
  padding: 2rem;
}

fieldset {
  border: 2px dashed rgba(0, 0, 0, 0.8);
  background-color: #1e2127;
}


section {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.5rem;

  padding: 2rem;
}

section {
  border: 2px dashed rgba(0, 0, 0, 0.8);
  background-color: #1e2127;
}




table {
  font-family: "Fira Code";

  border-collapse: collapse;
  width: 100%;
}

th,
td {
  border: 1px solid black;
  padding: 8px;
  text-align: center;
}

th {
  background-color: #2a7fff;
  color: white;
}