@font-face {
    font-family: "Angels";
    src: url("fonts/angels_message.woff2") format("woff2");
  }

  @font-face {
    font-family: "Pixel";
    src: url("fonts/pixelpoiiz.woff2") format("woff2");
  }
  
  @font-face {
    font-family: "Smalle";
    src: url("fonts/smalle.woff2") format("woff2");
  }
  
  body {
      margin: 0;
      background: #eaeaea;
    
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
  
      background-image: url("images/bg.png");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
  
      font-family: "Smalle", serif;
      font-size: 18px;
  
    }


/* title */
  .title {
    font-family: "Angels", serif;
    font-size: 74px;
    margin-top: 40px;
    text-align: center;
    color: #f0f0f091;


    text-shadow: 3px 2px 6px rgba(31, 31, 31, 0.6);

    animation: float 4s ease-in-out infinite,
             flicker 3s infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.95; }
}

/* home button */
.home {
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 10;
  }
  
  .home img {
    display: block;
    width: 80px;

    filter: drop-shadow(2px 4px 4px rgba(0,0,0,0.4));
  }

  .home:hover .home-img {
    content: url("images/about/icon-home-hover.png");

    filter: drop-shadow(0 0 8px rgba(255,255,255,0.8));
  }

/* scene */
  .console-scene {
    position: relative;
    width: 1000px;
    height: 700px;
  }

  .console {
    width: 100%;
    display: block;

    filter: drop-shadow(0 30px 40px rgba(0,0,0,0.3));
  }

  .screen {
    position: absolute;
  
    top: 100px; 
    left: 50%;
    transform: translateX(-50%);
  
    width: 369px;
    height: 278px;
    background: #ffffff00;
  
    padding: 10px;
  
    overflow-y: auto; 
    overflow-x: hidden;
  
    display: block;
    text-align: center;
  }

  .screen::-webkit-scrollbar {
    width: 10px;
  }

  .screen::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.179);
    border-radius: 10px;
  }

  .screen::-webkit-scrollbar-thumb {
    background: #8d8880;
    border-radius: 10px;
  
    border: 2px solid rgba(255,255,255,0.4);
  }

  .screen::-webkit-scrollbar-thumb:hover {
    background: #bfb8ad;
    border-radius: 10px;
  }

  
  .panel {
    display: none;
  }
  
  .panel.active {
    display: block;
  }

  .profile {
    width: 180px;
    margin-bottom: 10px;
  }

/* buttons */
  .buttons {
    position: absolute;

    bottom: 145px;   /* closer to console edge */
    left: 50%;
    transform: translateX(-50%);
  
    display: flex;
    gap: 25px;      /* tighter like your drawing */
}

  .btn {
    width: 100px;
    cursor: pointer;
    transition: transform 0.1s;
  }

  .btn:active {
    transform: translateY(3px) scale(0.95);
  }

/* texts */
  .section-title {
    font-family: "Pixel"; 
    margin-top: 15px;
    margin-bottom: 5px;
    
  }

  .highlight {
    color: #3e5fd8;
    font-weight: bold;
  }
  
  .underline {
    text-decoration: underline;
  }

  .small-text {
    font-size: 16px;
    font-weight: bold;
  }

  .glow {
    text-shadow: 0 0 6px rgba(31, 31, 31, 0.6);
  }
  
/* rainbow shimmer */
  .rainbow {
    background: linear-gradient(
      90deg,
      red,
      orange,
      yellow,
      green,
      cyan,
      blue,
      violet,
      red
    );
  
    background-size: 300%;
  
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
  
    animation: rainbowMove 4s linear infinite;
  }
  
  @keyframes rainbowMove {
    0% { background-position: 0%; }
    100% { background-position: 200%; }
  }