@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Source+Code+Pro&display=swap');

body {
    background-color: #000;
    height: 100vh;
    margin: 0;
}

* {
    color: #eee;
    font-family: Inter;
    font-weight: 400;
}

h2 {
    font-weight: 600;

}

.navbar {
    border-bottom: 1px solid #666;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    align-items: center;
}

.navbar #links {
    display: flex;
    align-items: center;
    list-style: none;
    column-gap: 1rem;
}

.navbar #links li a {
    color: #eee;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease-in-out;
}

.navbar #links li a:hover {
    color: #bbb;
}

.form-control {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
    width: 50%;
    margin: 0 auto;
    margin-top: 1rem;
}

.form-control * {
    background-color: #222;
    color: #eee;
    border: none;
    font-size: 1em;
    padding: 0.8rem;
    border-radius: 5px;
}

.form-control textarea {
    resize: none;
}

.form-control input[type=text] {
    font-size: 1.2em
}

.navtitle {
    font-weight: 500;
}

.paste-display {
    padding: 1rem;
    background-color: #222;
    display: block;
    white-space: pre;
    overflow: auto;
    border-radius: 5px;
    font-family: Source Code Pro;
}

.paste-wrapper {
    margin: 0 1rem;
}

.hidden {
    display: none;
}

#about {
    margin: 0 2rem;
}

#create {
    margin: 0 2rem;
}

.form-control input[type=submit] {
    cursor: pointer;
    background-color: #222;
    transition: background-color 0.2s ease-in-out;
}

input[type=submit]:hover {
    background-color: #333;

}
