* {
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif
}

body, h1 {
    margin: 0;
}

nav {
    background-color: rgb(17, 36, 206);
    padding: 10px;
}

h1 {
    color: white;
    display: inline-block;
    font-size: 34px;
}

#title {
    display: inline-block;
    font-family: 'Courier New', Courier, monospace;
    background-color: white;
    color:rgb(17, 36, 206);
    margin-right: 40px;
    animation: 1s steps(2, jump-none) infinite alternate blink;
}

@keyframes blink {
    from {
        margin-right: 70px;
        padding-right: 0;
    }

    to {
        margin-right: 45px;
        padding-right: 25px;
    }
}

.nav-link {
    margin-right: 20px;
    display: inline-block;
    color: white;
    text-decoration: none;
}

code {
    font-family: 'Courier New', Courier, monospace;
    background-color: rgb(32, 32, 32);
    color: rgb(255, 255, 255);
    padding: 2px 8px;
    border-radius: 4px;
}

#content {
    height: 80%;
    width: 60%;
    margin: 0 auto;
    text-align: center;
}

picture > img {
    height: 28vw;
}

p {
    font-size: large;
}

.button {
    background-color: rgb(17, 36, 206);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    display: inline-block;
}

.white-link-text {
    color:rgb(255, 255, 255);
    text-decoration: none;
}