@import url("https://fonts.googleapis.com/css?family=Montserrat");

header
{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 80px;
}

#logo
{
    height: 280px;
}

#coat
{
    height: 200px;
}

h1
{
    font-size: 4em;
    font-family: Montserrat, sans-serif;
    font-variant: small-caps;
    letter-spacing: 3px;
    line-height: 1.2em;
    margin: 0 80px;
}

h1 .small
{
    font-size: 0.75em;
    margin-left: 28px;
}

main
{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

section
{
    display: flex;
    align-items: center;
}

section h2
{
    font-family: sans-serif;
    width: 100px;
}

section input.active
{
    cursor: default;

    background: mistyrose;
    border-color: brown;
}

#action
{
    display: flex;
    flex-direction: column;
}

#action button
{
    color: white;
    font-size: 1.2em;
}

input, button
{
    cursor: pointer;

    height: 80px;
    padding: 15px;
    margin: 15px;

    background: brown;
    border: 5px solid brown;

    transition: transform 0.5s cubic-bezier(0, 1, 0.5, 1);
}

button#green
{
    background: green;
    border-color: green;
}

button#green.active
{
    cursor: default;

    color: green;
    background: lightgreen;
    border-color: green;
}

input:focus, button:focus
{
    outline: none;
}

input:hover:not(.active), button:hover:not(.active)
{
    transform: scale(1.05);
}

input:active:not(.active), button:active:not(.active)
{
    transform: scale(0.95);
}
