.gridhome {
  width: 90vw;
  margin: 0 auto;
  align-items: center;
  /* overflow: hidden; */
  display: grid;
  grid-template-columns: 35% 1fr 20%;
  gap: 1rem;
  justify-content: space-between;
  box-sizing: border-box;

  &>div {
    border: 1px solid white;
    overflow: hidden;
    box-sizing: border-box;
    padding: 1rem;
    background-color: rgba(0, 0, 0, .3);
  }
}

.topics {
  font-family: 'Courier New', Courier, monospace;
  width: fit-content;
  margin: 0 auto 1rem;
  border: 1px solid goldenrod;
  padding: 1rem;
  font-size: 1.4rem;
  min-width: 20vw;
  width: 100%;
  background-color: black;
  box-sizing: border-box;

  a {
    color: inherit;
    display: block;
    margin-bottom: 1rem;

    &:hover {
      text-decoration: underline;
      color: rgb(28, 147, 252);
    }

    &:last-child {
      margin-bottom: 0;
    }

    &[href=""] {
      text-decoration: line-through;
    }
  }
}

#joojsite {
  display: flex;
  width: 100vw;
  justify-content: space-around;
  position: fixed;
  padding: 2px 0;
  bottom: 0;
  animation: roll 12s infinite linear;
  background-color: black;
  box-shadow: 100vw 0 black;

  div {
    text-shadow: 100vw 0;
  }

  div:nth-child(odd) {
    color: cyan;
  }

  div:nth-child(even) {
    color: rgb(255, 95, 121);
  }
}

.phantasy {
  width: 10vw;
  position: absolute;
  top: 2rem;
  right: 1rem;
}

.index-grid {
  display: flex;
  margin: 0 auto;
  gap: 6rem;
  width: 70vw;
  justify-content: center;

  div {
    width: 100%;
    max-width: 25vw;
    /* margin: 0 auto; */
  }
}