body {
    font-family: "Averia Gruesa Libre", system-ui;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    color: white;
    background-color: rgb(11, 11, 11);
    margin-left: 10vw;
    margin-right: 10vw;
}

.row {
    display: flex;
    gap: 50px;
    perspective: 400px;
    margin: 50px;
}

.card {
    background-color: rgb(24, 24, 24);
    background-image: linear-gradient(to bottom right, rgb(47, 47, 47), rgb(0, 0, 0));
    width: 33%;
    border-radius: 10px;
    box-shadow: 0 0 10px rgb(131, 131, 131);
    transition: all 150ms;
}

.card-img {
    height: 345px;
    overflow: hidden;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 500ms;
}

.card-content {
    padding: 20px;
}

.card-content h2 {
    margin-top: 0;
    margin-bottom: 0
}

h2 {
    font-family: "Averia Gruesa Libre", system-ui;
}

h3 {
    font-size: 14px;
    font-family: "Outfit", sans-serif;
    color: rgb(91, 91, 91);
}

.card-img img:hover {
    transform: scale(1.1);
}

a.button {
    border-radius: 3px;
    border: rgb(151, 10, 10) solid;
    padding: 0.8em 1.2em;
    color: rgb(151, 10, 10);
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
}

a:hover {
    background-color: rgb(151, 10, 10);
    color: white;
    transform: scale(1.05);
}

.bold {
    font-weight: 1000;
}

.italic {
    font-style: italic;
}