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

nav {
    position: fixed;
}

.hero {
    background: url('img/header.png') no-repeat center center;
    background-size: cover;
    color: black;
    text-align: center;
    padding: 100px 20px;

    h1 {
        font-size: 2rem;
        font-weight: bold;
    }
}

.description {
    display: none;
    position: absolute;
    bottom: 13em;
    left: 0.5em;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    border-radius: 5px;
    font-family: monospace;
}

.card:hover .description {
    display: block;
}

@media (min-width: 1366px) {
    .description {
        display: none;
        position: absolute;
        right: 1em;
        background-color: rgba(0, 0, 0, 0.7);
        color: white;
        padding: 10px;
        border-radius: 5px;
        font-family: monospace;
    }
}