*, *::before, *::after {
    box-sizing: border-box;
    font-family: "Open Sans", Verdana, Geneva, Arial, Helvetica, sans-serif;
}

html {
    font-size: 14px;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/tile_background_lightgray.png');
}

main {
    width: 25rem;
    margin: 2rem 0;
    padding: 1.5rem;

    background: white;
    border-radius: 5px;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.075),
    0 2px 2px 0 rgba(0, 0, 0, 0.075),
    0 4px 4px 0 rgba(0, 0, 0, 0.075),
    0 8px 8px 0 rgba(0, 0, 0, 0.075),
    0 16px 16px 0 rgba(0, 0, 0, 0.075);
}

body.index {
    align-items: baseline;
}

body.index > main {
    width: 880px;
}

.logo {
    padding-top: 1rem;
    padding-bottom: 2rem;
}

.logo img.vector {
    width: 60%;
    display: block;
    margin: 0 auto;
}

body.index .logo img.vector {
    width: 168px;
    margin: 0;
}

body.index .logo {
    border-bottom: 3px solid #505050;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.logo div.raster {
    display: none;
}

.hr-or {
    margin: 40px;
    position: relative;
}

.hr-or hr {
    border: none;
    border-top: 1px solid #ccc;
}

.hr-or div {
    position: absolute;
    top: -0.5em;
    line-height: 1em;
    padding: 0 10px;
    background-color: white;
    left: 50%;
    transform: translate(-50%, 0);
    font-weight: bold;
    color: #666;
}