* {
    box-sizing: border-box;

    margin: 0;

    padding: 0;
}

body {
    align-items: center;

    background-color: #333;

    color: #FFF;

    display: flex;

    flex-direction: column;

    font-family: 'Courier New', Courier, monospace;

    margin: 20px;
}

h1 {
    font-size: 42px;

    text-align: center;
}

p {
    margin-bottom: 15px;
}

.models {
    margin-top: 25px;

    width: 300px;
}

a {
    color: #FFF;

    font-size: 25px;

    text-decoration: none;

    transition: .5s;
}

a:hover {
    text-decoration: underline;
}

@media (min-width: 500px) {
    .models { width: 500px }
}