* { 
	box-sizing: border-box;
}

html, body {
	min-height: 100vh;
	background: #fff;
	color: #000;
}

a, u {
    text-decoration: none;
}

.container {
    padding-top: 15%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.button-container {

}

.button {
    padding: 8px 16px;
    text-transform: uppercase;
    border: 0;
    line-height: 20px;
    border-radius: 3px;
    -webkit-box-shadow: 0 1px 5px 0 rgb(0 0 0 / 30%);
    -moz-box-shadow: 0 1px 5px 0 rgba(0,0,0,.3);
    box-shadow: 0 1px 5px 0 rgb(0 0 0 / 30%);
    margin: 8px;
    font-size: 14px;
    letter-spacing: 1.25px;
    cursor: pointer;
}

.button.primary {
    background-color: #0096F6;
    color: #FFF;
}