body {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white
}

.data-title h1 {
    font-size: 2em;
    padding-top: 4em;
    padding-bottom: 1em;
}

.data-grid {
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 2em
}

.card {
    color: white;
    display: block;
    text-decoration:none;
    width: 35vw;
    padding: 1em;
    border: solid;
    border-color: white;    
}

.card:hover {
    color: black;
    background-color: white;
    border-color: black;
    transition: 0.3s;
}

.data-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.data-text h1 {
    padding-bottom: .5em;
}

.data-text p {
    padding-bottom: .5em;
}

img{
    width: auto;
    height: auto;
    max-width: 100%;
}

@media screen and (max-width: 750px) {
    .data-grid {
        display: grid;
        grid-template-columns: auto;
        grid-gap: 2em;
    }


    .card {
        width: 80vw;

    }
}