code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
    line-height: 1.5em;
}

code {
    color: #f56d8f;
}

pre code {
    display: block;
    overflow-x: auto;
    color: #abb2bf;
}

.codeHome{
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
    position: relative;
}

.codeTitle{
    position: relative;
    height: 32px;
    line-height: 32px;
    color: white;
    padding-left: 8px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    background-color: rgb(52 53 65);
}

.codeBody{
    background-color: #000000;
    padding: 16px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    display: grid;
}

.copyCode{
    display: flex;
    float: right;
    background: transparent;
    color: white;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 2%;
    border: none;
    font-size: 10px;
    font-weight: 100;
    font-family: system-ui;
}
.copyCode::before{
    content: url("../images/clipboard-outline.svg");
    margin-right: 5px;
}
