@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

body {
    margin: 0 auto;
    font-family: Tahoma, Verdana, Arial, sans-serif;
    background: #222;
    color: white;
    display: flex;
}

.sidebar {
    width: 200px;
    padding: 20px;
    background-color: #333;
}

.sidebar ul {
    list-style-type: none;
    padding: 0;
}

.sidebar li {
    margin: 15px 0;
}

.content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    font-family: monospace;
    font-size: 30px;
}

pre {
    padding: 20px 30px;
    /* transition:
        width 2s,
        height 2s,
        font-size 200ms,
        border-radius 500ms,
        background-color 2s,
        transform 0.5s; */
}

/* pre:hover {
    background-color: #313131;
    border-radius: 15px;
    transform: translate(0, -5px);
} */

.btn {
    padding: 0px 10px;
    color: white;
    background-color: #555;
    border: 1px solid #555555;
    height: 40px;
    border-radius: 30px;
    text-decoration: none;
    cursor: pointer;
    touch-action: manipliation;
}

.btn:hover {
    transition: all 0.2s;
    transform: translate(0, 1px);
    box-shadow: 0px 5px 5px 2px rgba(0, 0, 0, 0.2) inset;
}