@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap');

* {
    margin: 0;
    padding: 0;

    background-color: black;
    color: green;
}

body {
    display: grid;
    font-family: 'Source Code Pro', Arial, sans-serif;
}

.cards {
    display: flex;
    flex-direction: column;

    justify-self: center;
    justify-content: space-between;
}

.card {
    min-width: 800px;
    max-width: 1200px;

    min-height: 100px;
    max-height: 600px;

    padding: 5px;
    margin-bottom: 15px;

    border: 1px dashed green;
}

.card p{
    padding-bottom: 5px;
}