body {
  background-color: #2A2F3B;
  /* background-color: #191c22; */
  /* background: radial-gradient(circle at 50% 50%, #2a7fff, #194c99); */



  color: white;

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

  /* font-weight: 400; */
  /* font-style: bold; */


  padding: 0;
  margin: 0;
}

::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.button {
  display: inline-block;
  margin: .2rem;
  padding: 10px 20px;
  background-color: black;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  transition: background-color 0.3s ease-in-out;
  position: relative;
}

a.button:hover,
a.button:focus {
  background: linear-gradient(to left, #2a7fff, black);

  opacity: 1;
}


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;
}