  * {
      box-sizing: border-box;
      user-select: none;
    }

    body {
      margin: 0;
      display: flex;
      justify-content: center;
      gap: 40px;
      align-items: center;
      height: 100vh;
      background-image: url('../img/info/Multi_bg.png');
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      background-color: #574C4C;
    }

    .container {
      display: flex;
      height: 100vh;
      padding: 20px;
      gap: 20px;
    }

    .sidebar1 {
      width: 60px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      padding: 30px 40px 0px 30px;
    }

    .sidebar2 {
      width: 100px;
      height: 181px;
      border: 1px solid white;
      background-color: white;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 11px;
      padding: 18px 16px;
      border-radius: 1em;
    }

    button {
      width: 100px;
      height: 44px;
      border: 1px solid white;
      cursor:pointer; cursor:hand;
  	  background-color: white;
  	  color: #dd5a58;
      font-family: "Pretendard Variable";
      font-size: 11.5pt;
      font-weight: 600;
  	  padding: 5px;
  	  border-radius: 2em;
    }

    .thumbnail {
      width: 68px;
      height: 68px;
      border-radius: 15%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background-color 0.3s ease;
      overflow: hidden;
      position: relative;
    }

    .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    }

    .thumbnail::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgb(255, 255, 255);
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
    }

    .thumbnail:hover::after {
      opacity: 0.3;
    }

    .panel {
      height: auto;
      margin: 30.2px 40px;
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .panel img {
      max-height: 100%;
      max-width: 100%;
      object-fit: contain;
      display: block;
      box-shadow: none; 
    }

    .textbox {
      width: 28vw;
      height: auto;
      margin: 30px 0px 35px 50px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      position: relative;
      color: #ffffff;
      font-family: "Pretendard Variable";
      font-size: 11.8pt;
      font-weight: 300;
      text-align: justify;
    }

    .textbox img {
      max-height: 100%;
      max-width: 17%;
      object-fit: contain;
      display: block;
      box-shadow: none; 
    }

    h1 {
      margin-bottom: 0;
      color: #ffffff;
      font-family: "Pretendard Variable";
      font-size: 40pt;
      font-weight: 700;
      line-height: 11px;
    }

    h3 {
      margin-top: 37.5px;
      color: white;
      font-family: "Pretendard Variable";
      font-size: 16pt;
      font-weight: 150;
      line-height: 24px;
    }

    .type {
      line-height: 24px;
    }