* {
    font-family: "ADLaM Display";
    color: rgb(47, 0, 76);
}

.unselectable, summary {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

a {
    text-decoration: none;
    display: inline-block;
}

a:hover {
    color:rgb(72, 0, 154);
    text-decoration: underline;
    transform: scale(1.10)
}

details {
    font-size: x-large
}

.content {
    font-size: medium;
}

#scrollcontent {
    max-height: 150px;
    overflow-y: auto;
}

body {
    background-image: url(images/background.jpg);
    background-size: cover;
    background-attachment: fixed;
}

.box {
  width: 800px;
  margin: auto;
  background-color: mediumpurple;
  padding: 10px;
  border: 10px solid blueviolet
}

.box::after {
    content: "";
    display: block;
    clear: both;
}

a {
    display: inline-block;
    padding: 5px;
    margin: 5px;
    background-color: blueviolet;
    border-radius: 10px;
    text-decoration: none;
    color: rgb(47, 0, 76);
    transition: 0.2s ease; 
}

::selection {
    background-color: blueviolet;
}

.lab-records {
    font-size: larger;
}

.trail-dot {
  position: fixed;
  width: 12px;
  height: 12px;
  background-color: rgba(75, 0, 250, 0.4);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: fadeShrink 0.6s ease-out forwards;
}

@keyframes fadeShrink {
  0% {
    opacity: 0.6; /* Starts partially see-through */
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.2);
  }
}

.right-side {
  float: right;
}

.updates-box {
  display: block;
  box-sizing: border-box;
  width: 400px;
  max-height: 200px;
  overflow-y: auto;

  border: 10px solid #7D20D4;
  background-color: mediumpurple;
  border-radius: 25px;
  padding: 10px;
  margin-top: 15px;
}

nav {
  float: left;
  background-color: mediumpurple;
  border: 10px solid blueviolet;
  border-radius: 25px;
  padding: 10px;
}

.right-img {
  display: block;
  width: 200px;
  margin-left: auto;
}

.overlay-fox {
  position: absolute;
  width: 200px;
  left: 150px;
  top: 340px;
  transform: rotate(-20deg);
}

































