﻿html {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: rgba(0,0,0,.2);
}

.header {
    height: 10em;
    background: radial-gradient(circle at 25% 25%,#1f1b2f 0%,#0e0e12 25%);
    background-repeat: no-repeat;
    background-attachment: fixed;
    text-align: center;
    padding: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header img {
    width: 33em;
    top: -0.5em;
    position: relative;
}

.connect {
    background-color: #fff;
    border: 1px solid silver;
    border-radius: 1em;
    margin: 15vh auto 1em;
    max-width: 1024px;
    padding: 1em;
    width: 100%;
    text-align: center;
}

.connect input {
    font-size: 2em;
    height: 3em;
    width: 90%;
    text-align: center
}

.connect input::placeholder {
    color: #d0d0d0;
}

.connect button {
    background: #337ab7;
    color: white;
    border: 1px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
    line-height: 1.42857143;
    margin-bottom: 0;
    padding: 0.5em 1em;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    font-size: 1em;
}

.connect button:hover {
    background: #265a88;
}

.message {
    background-color: #dff0d8;
    padding: 1em;
}

.error-message {
    background-color: #f2dede;
    padding: 1em;
}

.get-your-own {
    margin-top: 2em;
    text-align: center;
}

.get-your-own a {
    text-decoration: none;
    color: #265a88;
    font-weight: bold;

}

.get-your-own a:hover {
    text-decoration: underline;
}