* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 300;
}

body {
    width: 100%;
    height: 100%;
    background-color: white;
}

p.spaced {
    padding: 5px 20px;
    font-size: 15pt;
    font-weight: 400;
    color: black;
}

p.code {
    padding: 5px;
    font-size: 30pt;
    color: white;
    font-weight: 600;
    letter-spacing: 3px;
    font-family: monospace;
    background-color: #666;
}

.label {
    display: inline-block;
    text-align: left;
    width: 250px;
    height: 30px;
    line-height: 30px;
    text-transform: uppercase;
    font-size: 9pt;
    font-weight: 400;
    color: black;
    letter-spacing: 2px;
}

input[type=text] {
    width: 200px;
    height: 30px;
    padding: 5px 10px;
border: 1px dashed black;
}

input[type=submit] {
    width: 200px;
    height: 30px;
    padding: 5px 10px;
    margin: 20px 0;
    background: none;
    border: 1px solid black;
    color: black;
    transition: all 0.3s;
    cursor: pointer;
    letter-spacing: 2px;
    font-size: 9pt;

}

input[type=submit]:hover {
    background-color: #D75757;
    border-color: brown;
    color: #ccc;
}

input[type=submit]:active {
    background-color: black;
    border-color: white;
    color: white;
}


#wrapper {
    display: table;
    width: 100%;
    height: 100%;
}

#centering-wrapper {
    display: table-row;
    width: 100%;
    height: 100%;
}

#centered-content {
    width: 100%;
    height: 100%;
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

#content {
    width: 500px;
    margin: 0 auto;
}