.code-editor {
    max-width: 100%;
    width: 600px;
    background-color: #1d1e22;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    padding: 20px;
    margin: 0 auto;
  }

  .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
  }

  .title {
    font-family: Lato, sans-serif;
    font-weight: 900;
    font-size: 16px;
    letter-spacing: 1.57px;
    color: rgb(212, 212, 212);
  }

  .icon {
    width: 20px;
    transition: .2s ease;
  }

  .icon:hover {
    cursor: pointer;
    border-radius: 50px;
    background-color: #6e7281;
  }

  .editor-content {
    margin-top: 10px;
    color: white;
  }

  .property {
    margin-left: 30px;
  }

  .property:hover {
    cursor: text;
  }

  .editor-content .color-0 {
    color: rgb(86, 156, 214);
  }

  .editor-content .color-1 {
    color: rgb(182, 206, 168);
  }

  .editor-content .color-2 {
    color: rgb(156, 220, 254);
  }

  .editor-content .color-3 {
    color: rgb(207, 146, 120);
  }

  .color-preview-1, .color-preview-2 {
    height: 8px;
    width: 8px;
    border: 1px solid #fff;
    display: inline-block;
    margin-right: 3px;
  }

  .color-preview-1 {
    background-color: #1d1e22;
  }

  .color-preview-2 {
    background-color: rgba(0, 0, 0, 0.5);
  }

  @media (max-width: 768px) {
    .code-editor {
      width: 90%;
    }
  }

  @media (max-width: 480px) {
    .code-editor {
      width: 100%;
      padding: 10px;
    }

    .title {
      font-size: 14px;
    }
  }