body{
    background: linear-gradient(to top, rgb(0,0,0), rgb(0,0,0) 15%, rgb(0,0,0,0) 50%), url("../img/landing.jpg");
    background-size: cover;

}


.jasson-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.jasson-title {
    color: white;
    padding-left: 1em;
    display:grid;
    grid-template-columns: auto auto;
}

.jasson-title h1 {
    font-size: 2em;
    padding-top: 3em;
}

.jasson-title a {
    color: white;
}
.paper{
    padding-top:4.75em;
    padding-left:14em;
    height: fit-content;
}
.paper img{
    margin-bottom:1em;
    border: solid;
    border-color: black;
}

.jasson-grid {
    display: grid;
    grid-template-columns: auto auto auto auto;
    grid-gap: 2em;
    max-width: 90%;
}

.card {
    flex-direction: column;
    align-items: center;
    border-radius: 8px;
    color: black;
    display: flex;
    text-decoration:none;
    max-width: 24vw;
    background-color: white;
    border: solid;
    border-color: black;
    padding: 1em;

}
.card p {
    text-align: center;
    font-size: 1.25em;
}
.img {
    height: 18vw;
}

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

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

.data-text p {
    padding-bottom: .25em;
    font-weight: bold;
}

img{
    width: auto;
    height: auto;
    max-width: 100%;
    border-radius: 8px;
}

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

    .card {
        border-radius: 8px;
        color: black;
        display: block;
        text-decoration:none;
        max-width: 35vw;
        background-color: white;
        border: solid;
        border-color: black;
        padding: 1em;    
    }
    
    .imgc {
        height: 28vw;
        overflow:hidden;
    }
}

@media screen and (max-width: 750px) {
    .jasson-grid {
        display: grid;
        grid-template-columns: auto;
        grid-gap: 2em
    }
    .card {
        border-radius: 8px;
        color: black;
        display: block;
        text-decoration:none;
        max-width: 60vw;
        background-color: white;
        border: solid;
        border-color: black;
        padding: 1em;    
    }
    
    .imgc {
        height: 48vw;
        overflow:hidden;
    }
}