@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');

body {
    background-color: #111111;
    color: white;
    font-family: "Ubuntu Mono", monospace;
    font-size: 17px;
}

.page {
    text-align: center;
    margin: 0px;
    display: grid;
    grid-template-columns: 15% auto;
    height: 100vh;
}

.sidebar {
    background: #080808;
    height: 100%;
}

.sidebar .index {
    font-size: 24px;
}

.sidebar .active {
    background-color: #444444;
}

.sidebar .sidebar-option {
    height: 32px;
    margin: 8px 16px;
    border-radius: 6px;
    transition: 0.25s;
}

.sidebar .sidebar-option:hover {
    background-color: #333333;
}

.sidebar .active:hover {
    background-color: #444444;
}

.sidebar .sidebar-link {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
}

.main {
    text-align: center;
    margin: 64px;
    overflow-wrap: anywhere;
}

.project-name {
    border-radius: 12px;
    background-color: #666666;
    padding: 16px;
    text-align: right;
    margin-left: 40%;
    margin-right: 15%;
}

.project-desc {
    padding: 16px;
    margin-left: 15%;
    margin-right: 15%;
    text-align: left;
}
