:root{
    --font-mono: ui-monospace, menlo, Monaco, 'Cascadia Mono', 'Segoe UI Mono','Roboto Mono', 'Oxygen Mono', 'Ubuntu Monospace',
    'Source Code Pro', 'Fira Mono', 'Droid Sans Mono', 'Courier New', Monospace ;
    --transition: all 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: var(--font-mono);
}

header{
    position:fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    z-index: 99;
}

section{
    display: flex;
    flex-wrap: wrap;
    height: 100vh;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 1em;
}

section h1{
    font-size: 3em;
}

section h2{
    text-align: center;
    width: 100%;
    margin-bottom: 1em;
    font-size: 2.5em;
}

section form{
    padding: 1.5em;
    display: flex;
    flex-wrap: wrap;
    max-width: 500px;
    border-radius: 20px;
    border: 2px solid rgba(0,0,0,.1);
}

section form label{
    width: 100%;
    padding: 0.2em;
    margin-bottom: 0.5em;
}

section form input{
    width: 100%;
    margin-bottom: 1em;
    padding: 0.8em;
    border-radius: 9px;
    border: none;
    outline-color: #ff1100;
    background-color: #eee;
}

section form input[type='submit']{
    margin-top: 1.5em;
    background-color: #ff1100;
    color: #eee;
    font-family: var(--font-mono);
    transition: var(--transition);
}   

section form input[type='submit']:active{
    transform: scale(0.97);
}

section p{
    margin-top: 1.5em;
}

section p a{
    text-decoration: none;
    color: #ff1100;
}

/* Home */

