@font-face {
    font-family: Montserrat;
    src: url(../fonts/Montserrat-Regular.ttf);
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    font-family: 'Montserrat';
}

.card {
    padding: 1em;
    width: 90%;
    height: 10em;
    transition: all 300ms;
    cursor: pointer;
    background: #161616;
    color: white;
    border-radius: 4px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.card-title {
    font-size: 1.25rem;
}

body {
    font-family: inherit;
    background: #121212;
    margin: 0;
    padding: 2em 0;
}

.card:hover {
    transform: scale(1.1);
}

.card-link {
    height: 100%;
    width: 100%;
    color: inherit;
    text-decoration: inherit;
}

.card-link:hover {
    color: inherit;
}

.center {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.container {
    width: 100vw;
    padding: 2em;
    display: grid;
    place-items: center;
    row-gap: 1em;
}