@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400&display=swap');

:root {
    --clr: rgb(49, 27, 27);
    --clr: rgb(34, 27, 49);
    --clr: rgb(27, 49, 48);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: sans-serif;
}

.header {
    margin: auto;
    height: 24vh;
    min-height: 90px;
    width: 100%;
    color: var(--clr);
    background: #00000033;
    position: relative;
    display: inline-flex;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.font-monospace {
    font-family: monospace !important;
}

.get_proj_name:hover {
    padding: 2px 16px;
}

.title {
    letter-spacing: 3px;
    font-size: 28px;
}

.project_content {
    font-family: sans-serif;
    font-size: 28px;
    margin: 0;
    padding: 10px;
    border: none;
    color: #fefefe;
    background: var(--clr);
    position: relative;
    display: inline-block;
    height: 100%;
    max-width: 100vw;
    width: 100%;
    resize: none;
}

.main {
    background: #fff;
    width: 100%;
    height: 76vh;
}

.project_content:focus-visible {
    border: none;
    outline: none;
}

#monospace:checked ~ label[for="monospace"] {
    border-color: var(--clr);
    color: var(--clr);
}

.button-mono {
    all: unset;
    user-select: none;
    color: #2227;
    cursor: pointer;
    transition: 200ms;
}

.button-mono:hover {
    color: var(--clr);
}