/****
COLORS
orange      #BABABA
grey dark   #4C4C4C
grey light  #BABABA
 */

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background: rgb(180, 180, 180);
    background: radial-gradient(circle, rgba(180, 180, 180, 1) 0%, rgba(48, 48, 48, 1) 65%, rgba(52, 41, 11, 1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Roboto, Calibri, Arial, Helvetica, sans-serif;
    height: 100%;
}

#main {

}

@keyframes circleIn {
    0% {
        transform: scaleX(0) scaleY(0) rotate(90deg);
    }
    100% {
        transform: scaleX(1) scaleY(1) rotate(0deg);
    }
}

#inner {
    animation: circleIn .45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 500px;
    height: 500px;
    background-color: #BABABA;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    box-shadow: 2px 2px 5px #555 inset;
    border-radius: 50%;
}

.column {
    display: flex;
    flex-direction: column;
}

.column > * {
    margin: 3px;
}

.row {
    display: flex;
    flex-direction: row;
}

.relaxed-h > * {
    margin-top: .5em;
    margin-bottom: .5em;
}

.lighter {
    opacity: .8;
}

.smaller {
    font-size: 80%;
}

hr {
    border: none;
    border-top: 1px solid #858585

}

.mr1 {
    margin-right: .5em;
}
