.code-editor {
    width: 300px;
    background-color: #000000b5;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    padding: 2px;
    min-height: 100px;
  }
  .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px;
  }
  .title {
    font-family: Lato, sans-serif;
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 1.57px;
    color: rgb(212 212 212);
  }
  .icon {
    width: 20px;
    transition: .2s ease;
  }
  .code{
    font-size: 14px;
    /* font-weight: bold; */
  }

  .cursor {
    margin-left: 5px;
color: white;
background: #ffffff;
animation: blink 1s infinite;
}

@keyframes blink {
0% {
opacity: 1;
}
50% {
opacity: 0;
}
100% {
opacity: 1;
}
}