@import url('https://fonts.googleapis.com/css?family=Nixie+One');
@import url('https://fonts.googleapis.com/css?family=Raleway:300,400,700');

body {
    margin: 0px;
    background-color: #f4f4f4;
    font-family: 'Raleway', sans-serif;
    background-color: #1abc9c;
}


/* Header */
.mainLine {
    color: black;
    text-align: center;
    font-size: 3rem;
    animation: blink ease-in;
    animation-iteration-count: infinite;
    animation-duration: 1s;
}

@keyframes blink {
    0% {color: black;}
    50%{color: #26a99d;}
    100% {color: black;}
}


/* Nav Bar */
canvas {
    display: block;
    margin: auto;
}
#navbar {
    background-color: #f2f2f2;
    display: block;
    font-size: 25px;
    border-radius: 5px;
}
#last {
    margin-right: 10px;
}
ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}
ul li a {
    text-decoration: none;
    display: block;
    color: white;
}
ul li:hover {
    background-color: #958976;
}
ul li {
    text-align: center;
    border-radius: 5px;
    background-color: black;
    margin-left: 10px;
    float: left;
    width: 200px;
    height: 60px;
    opacity: 0.8;
    line-height: 50px;
    margin-top: 10px;
    margin-bottom: 10px;
}


/* Footer */
footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    margin: 0 auto;
    padding: 7px 15px;
    background: #1e1f26;
    color: #FFF;
    font-size: 1em;
}
footer a {
    font-size: 1em;
    color: #FFF;
}
footer p {
    margin: 10px auto;
    max-width: 1280px;
    box-sizing: border-box;
    text-align: center;
}


@media (max-width: 600px) { 
    #navbar {
        display: none;
    }
}
