.jacquard-12-regular {
    font-family: "Jacquard 12", system-ui;
    font-weight: 400;
    font-style: normal;
  }

  .pixelify-sans {
    font-family: "Pixelify Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
  }

h1, h2 {
    text-align: center;
    color: #EA4D8E;
    font-family: 'Jacquard 12', system-ui;
}

h1 {
    font-size: 35px;
    padding-top: 50px;
}

h2 {
    margin-bottom: 0%;
    font-size: 25px;
}

h2:hover, h1:hover{
    color: pink
}


/* width */
.content::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
.content::-webkit-scrollbar-track {
    background: #FFF4F6;
  }
  
  /* Handle */
.content::-webkit-scrollbar-thumb {
    background: #FFB9D8;
  }
  
  /* Handle on hover */
.content::-webkit-scrollbar-thumb:hover {
    background: #ff6ca7;
  }

  .warning {
    padding-top: 30px;
    margin-left: auto;
    margin-right: auto;
    border: none;
    height: 100%;
    width: 20%;
}

.bubblecontent {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.bub {
    font-family: "Pixelify Sans", sans-serif;
    color: #f4bce0;
}


body {
  background-image: url(https://64.media.tumblr.com/b02536e804c11979d269d02b5e0e9588/tumblr_inline_mm1ahphf5I1qz4rgp.gif);
}

.entries {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 20px;
}

.entries section {
  display: block;
}


@media (max-width: 790px) {
  .entries {
    grid-template-columns: 1fr;
  }
}

