﻿
body {
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

.moon-style {
    width: 100%;
    height: 100%;
    display: block;
}

.fade-in{
    visibility: hidden;
    opacity: 1;
    white-space: nowrap;
    overflow: hidden;
    width: 15em;
    animation: type 6s linear forwards;
}

.fade-in-two{
    visibility: hidden;
    opacity: 1;
    white-space: nowrap;
    overflow: hidden;
    width: 15em;
    animation: type 6s linear forwards;
}

@keyframes type {
    from { width: 0; }
    0% { opacity: 0; visibility: hidden; }
    100% { opacity: 1; visibility: visible; }
}

#app {
    font-family: Avenir, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: center;
    color: #2c3e50;
    margin-top: 60px;
}
