@font-face {
  font-family: 'Callisto';
  src: url('fonts/callisto-regular-webfont.woff2') format('woff2'),
  url('fonts/callisto-regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}




body {
  font-family: "Spline Sans", sans-serif;
  margin: 0;
  padding: 0;
  background: rgba(25,25,25,1);
  overflow: auto;
}

.list-item {

  margin: 0 auto;
  margin-bottom: .5rem;
  background-color: #000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
  width:98%;
}

.expand-button {
  width: 100%;
  padding: 1rem;
  border: none;
  background-color:rgba(255,255,255,.5);
  font-size: 1rem;
  font-family: "Spline Sans",cursive;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  border-bottom: 1px solid rgba(0,0,0,.25);
  transition: background-color 0.3s ease; /* This will provide a smooth transition effect */
}


.expand-button:hover {
 background-color: rgba(255, 255, 255, 0.25); /* Translucent white, where 0.5 is the opacity level */
}


.content {
  display: none;
  padding: 1rem;
}


.bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.bento img {
  width: 100%;
  border-radius: 5px;
}

.text {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  padding-top: 1rem;
}

.text h2 {
/*  display: grid;*/
margin-bottom: 0.5rem;
font-size: 1.5rem;
color: #333;
}

.text h3 {
/*  display: grid;*/
margin-bottom: 1rem;
font-size: 1.2rem;
color: #555;
}

.pgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 1rem;
}

.pgrid p {
  display: grid;
  margin-bottom: 1rem;
  padding: .5rem;
  color: #666;
}


.typewriter {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(
    100vh - 136px
  ); /* Subtract the height of the header, footer and the margins (50px + 50px + 36px) */
  padding: 36px;
  box-sizing: border-box;
}

.typing-area {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: none;
}

.typewriter2 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(
    100vh - 136px
  ); /* Subtract the height of the header, footer and the margins (50px + 50px + 36px) */
  padding: 36px;
  box-sizing: border-box;
}

.typing-area2 {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: none;
}

.ripple {
  position: absolute;
  font-family: Callisto, monospace;
  text-transform: uppercase;
  font-size: 80px;
  color: rgba(255, 255, 255, 1);
  animation: ripple-effect 30s ease-out forwards;
  text-shadow: 0 0 5px rgba(1, 1, 1, 0.1);
}

@keyframes ripple-effect {
  0% {
    text-shadow: 0 0 0px rgba(1, 1, 1, 0.1);
    opacity: 1;
  }
  50% {
    text-shadow: 0 0 10px rgba(1, 1, 1, 0.1);
  }
  100% {
    text-shadow: 0 0 20px rgba(1, 1, 1, 0);
    opacity: 0;
  }
}

br{
  height: 12px;
}

.breaker {
  border-radius: 8px;
  padding: .25rem;
  width:98%;
  margin:0 auto;
  background:rgba(255,255,255,.25);
  margin-bottom: .5rem;
}

.breaker h2{
  font-family: "Callisto", Trajan;
  letter-spacing: .25rem;
  color: rgba(0,0,0,.5);
  font-weight: 300;
  text-align: center;
}

footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  position: relative;
  width: 100%;
  clear: both;
}
