html, body {
    width: 100%;
    height: 100%;
}

html {
    color:  #1c3144;
    font-family: 'Quicksand', sans-serif;
}

body {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#hero_card {
    text-align: center;
    padding: 12px;

    -webkit-animation: fadein 1s;
       -moz-animation: fadein 1s;
        -ms-animation: fadein 1s;
         -o-animation: fadein 1s;
            animation: fadein 1s;
}

#logo {
    width: 100%;
    max-width: 256px;
}

button {
    background-color: #1c3144;
    border: none;
    border-radius: 50px;
    box-shadow: 0 12px 18px -6px rgba(0, 0, 0, 0.2);

    margin-top: 8px;
    padding: 12px 24px;

    color: #fdfdfa;
    font-weight: 700;
    text-transform: capitalize;
    text-decoration: none;

    cursor: pointer;
}

button:focus {
    border: none;
    outline: none;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}