
    @font-face {
      font-family: Narrow;
      src: url(fonts/AGLettericaCondensedC.otf);
      src: local(PT_Serif), url(fonts/AGLettericaCondensedC.otf);
    }

    body {
      background: #DDDDE0;
      margin: 0;
      font-family: 'Narrow', sans-serif;
      color: #3F5063;
    }

    #content {
      max-width: 1000px;
      margin: 5vh auto;
      padding: 0 10px;
    }

    #detail {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

    #detail img {
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      max-width: 100%;
      height: auto;
      transition: transform 0.3s ease;
      cursor: pointer;
      flex: 1 1 300px;
    }

    #detail img:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }

    a {
      display: inline-block;
      text-decoration: none;
      font-weight: 500;
      font-size: 1.5vw;
      color: #3F5063;
      text-transform: uppercase;
      margin-top: 30px;
      transition: color 0.3s ease;
    }

    a:hover {
      text-decoration: underline;
      color: #1a2a45;
    }

    @media (max-width: 768px) {
      #detail {
        flex-direction: column;
        align-items: center;
      }
      a {
        font-size: 5vw;
        margin-top: 20px;
      }
    }