* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f6;
    color: #222;
    padding: 32px 24px;
    line-height: 1.6;
}

h1 {
    font-size: 26px;
    margin-bottom: 20px;
}

h3 {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #5e5d5d;
    margin: 16px 0;
}
.p{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.code-editor {
    width: 50%;
    height: 180px;
    background-color: #1e1e1e;
    color: #d4d4d4;
    font-family: monospace;
    font-size: 14px;
    line-height: 1.5;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #333;
    white-space: pre;
    overflow: auto;
    margin-bottom: 20px;
}