@import url('https://fonts.googleapis.com/css2?family=Intel+One+Mono:ital,wght@0,300..700;1,300..700&display=swap');

:root {
    --background-color: #121314;
    --text-color: #eee;
    --accent-color: #c286b5;
}

* {
    font-family: 'Intel One Mono', monospace;
    font-weight: 500;   
    
    color: var(--text-color);
    background-color: var(--background-color);
    text-align: center;

    overflow: hidden;
}

c {
    color: var(--accent-color);
}

body {
    display: flex;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
}

a:visited {color: inherit;}

input {
    border: 1px solid #666;
    border-radius: 2px;
    outline: none;
}

.response {
    color: var(--accent-color);
}

.response c {
    text-decoration: underline;
}

.columns {
    display: flex;
    justify-content: space-between;
    width: 100vw;
}

.columns * { flex: 1; }

.left {
    text-align: right;
    padding-right: 10px;
}

.right {
    text-align: left;
    padding-left: 10px;
}

s {
    text-decoration: none;
    display: block;
    font-size: 12px;
    opacity: .5;
}

hr {
    width: 80%;
    opacity: .5;
}

.i {
    width: 300px;
    height: 300px;
    display: inline-flex;
    vertical-align: middle;
    align-items: center;
}