@import url('https://fonts.googleapis.com/css?family=Cormorant|Open+Sans');
body, html{
    height: 100%;
    width: 100%;
    background-color: #fefefe;
    color: #010101;
    line-height: 1;
    margin: 0;
    padding: 0;
	border: 0;
	font-size: 100%
}

.centered {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    overflow: hidden;
}

h1 {
    font-family: 'Cormorant', serif;
    text-align: center;
}


h2 {
    font-family: 'Open Sans', sans-serif;
    text-align: center;
}

.animated {
    color: tomato;
    animation-duration: 2s;
    animation-name: vibe;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.animated:hover {
    color: red;
}

@keyframes vibe {
    from {
        font-size: 25px;
    }

    to {
        font-size: 26px;
    }
}
