
@import url('https://fonts.googleapis.com/css?family=Great+Vibes');
@import url('https://fonts.googleapis.com/css?family=Droid+Serif:400,700');

body {

    display: block;
    white-space: nowrap;
    cursor: pointer;
    -webkit-text-size-adjust: none;
    box-sizing: border-box;
    margin:50px;

}

h1 {

    font-family: 'Great Vibes';
    line-height: 70px;
    font: 100%;
    text-align: center;
    color: #a40909;

}

.button {

    font-family: 'Droid Serif';
    position: relative;
    display: block;
    border: 1.5px solid;
    border-color: #a40909;
    border-radius: 40px;
    line-height: 50px;
    z-index: 2;
    text-align: center;
    text-decoration: none;
    padding: 5px;
    font-weight: 400;
    color: #a40909;
    
}

a:hover{

    border-radius: 40px;
    background: #a40909;
    color: antiquewhite;
    text-align: center;
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    -ms-transition: all .35s ease-in-out;
    -o-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
    
}