body{
          background-color: #22283A  ;
  color: #7FDCB8  ;
    font-family: "League Gothic", sans-serif;
font-size: 150%;
padding: 2em;
}

h1 {
     font-family: "Dela Gothic One", sans-serif;
     font-size: 300%;
     text-align: center;
}


a {
    color: #7FDCB8;
}

a:hover{
    background-color: #7FDCB8;
    color:#22283A ;
    .crosshair {cursor: crosshair;}

}

img {
    border: .75em double black; 
    border-radius: 2em;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}


.box {  
  flex-basis: 40%;
  margin: 1.5em;
  border: 2px solid black;
  border-radius: 100px;
  padding: 1em;
}

.box img {
  max-width: 100%;
  display: block;
  margin: auto;
}


/* SIDE TO SIDE */
/* Create the animation... */
@keyframes side {
   from {
      transform: scaleX(-1);
   }
   to {
    transform: scaleX(1);
      /* 70% works because the image width is set to 30% - update your percent according to your element's width */
   }
   

/* ...and then apply it: */
.sidetoside {
   animation-duration: 15s;
   animation-name: side;
   animation-iteration-count: infinite;
   animation-direction: alternate;
   animation-timing-function: linear;
   font-size: 150%;
}

.mouse-cursor-gradient-tracking {
  position: relative;
  background: #7983ff;
  padding: 1.5rem 3rem;
  font-size: 1.5rem;
  border: none;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  outline: none;
  overflow: hidden;
}

.mouse-cursor-gradient-tracking span {
  position: relative;
  pointer-events: none;
}

.mouse-cursor-gradient-tracking::before {
  --size: 0;
  content: '';
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  background: radial-gradient(circle closest-side, pink, transparent);
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease;
}

.mouse-cursor-gradient-tracking:hover::before {
  --size: 200px;
}
    