
body {
    text-align: center;
}

div {
    position: relative;
    transform: translateY(30vh);
}

p {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.5rem;
    margin-bottom: 2em;
}

a {
    font-family:'Courier New', Courier, monospace;
    background: black;
    color: white;
    padding: 30px;
    transition-timing-function: ease;
}

a:hover {
    background: orange;
    font-weight: bold;
    transition: 0.5s;
}
