body {
    background: url('../images/img_primary/background.webp');
    background-size: cover;
}

.card {
    overflow: hidden;
    max-width: 500px;
    max-height: 400px;
    margin: 25px;
    border-radius: 15px;
    border: 5px solid var(--primary);
    box-shadow: var(--box-shadow);
    color: var(--primary);
    text-shadow: 1px 1px 2px rgb(2, 2, 2);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: 0.8s;
    transform: translate(0px, 25px);

}

.content:hover a {
    opacity: 0.2;
    transition: 0.3s;
}

.content a:hover {
    opacity: 1;
}

.card:hover {
    transform: skew(0deg);
    border: var(--border-5);
    box-shadow: none;
}

.card h1 {
    border-radius: 15px;
    background-color: rgba(7, 66, 117, 0.162);
    text-align: center;
    margin: -1px;
    width: 450px;
    height: 300px;
    align-items: center;
    display: flex;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.card h1:hover {
    backdrop-filter: blur(1px);
}

@media screen and (max-width:1130px) {
    .content {
        margin: 50px 0px;
    }

    .card{
        min-width: 700px;
        min-height: 500px;
    }

    .card h1{
        min-width: 100%;
        min-height: 100%;
    }
}

@media screen and (max-width:750px) {
    .card{
        min-width: 300px;
        min-height: 300px;
    }

    .card h1{
        width: 300px;
    }
}