* {
    box-sizing: border-box;
}

body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

h1 {
    font-family: 'Courier New', Courier, monospace;
}

@keyframes cursorblink {
    0% {
        color: white
    }
    49% {
        color: white
    }
    50%{
        color: black;
    }
    100%{
        color: black;
    }
}

#title-cursor {
    animation-name: cursorblink;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

body nav ul {
    display: flex;
    list-style: none;
    /* border: 1px solid red; */
    padding: 0px;
    align-items: center;
    max-width: 280px;
}

body nav ul li {
    /* border: 1px solid red; */
    margin: auto;
}
