#routify-app{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.main{
    flex: 1;
}

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

@-webkit-keyframes move{
    0% {
        top:0;
    }
    50% {
        top:-10px;
    }
    100% {
        top:0;
    }
}
