* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  display: grid;
  place-items: center;
  min-height: 100dvh;
  background-color: hsl(0, 0%, 85%);
  font-family: "Roboto Mono";
}

.container {
  width: 1350px;
  max-height: 550px;
  overflow-y: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  padding: 40px;
  border: 5px dashed black;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.877);
}

.interest-container {
  padding: 20px;
  border: 3px solid black;
  transition: all 0.5s ease;
}

.interest-container h1 {
  line-height: 56px;
  text-decoration: underline;
  text-decoration-thickness: 3px;
}

.interest-container p {
  max-height: 67px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgb(197, 197, 197) rgb(116, 116, 116);
}

.interest-container a {
  color: black;
  transition: all 0.5s ease;
}

.interest-container a:hover {
  color: white;
}

.interest-container:has(.interest-link:hover) {
  color: white;
  background-color: rgb(31, 31, 31);
  border-color: rgb(31, 31, 31);
}

.title {
  font-size: 4rem;
}

#defaultCanvas0 {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -100;
}
