﻿body {
}

.main-container {
    padding: 30px;
}

/* HEADING */

.owned .heading {
    text-align: center;
}

.owned .heading__title {
    font-weight: 600;
}

.owned .heading__credits {
    margin: 10px 0px;
    color: #888888;
    font-size: 25px;
    transition: all 0.5s;
}

.owned .heading__link {
    text-decoration: none;
}

.owned .heading__credits .heading__link {
    color: inherit;
}

/* CARDS */

.owned .cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.owned .card {
    margin: 20px;
    padding: 20px;
    width: 500px;
    min-height: 200px;
    display: grid;
    grid-template-rows: 20px 50px 1fr 50px;
    border-radius: 10px;
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.25);
    transition: all 0.2s;
    background: radial-gradient(#1fe4f5, #3fbafe);
}

    .owned .card:hover {
        box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.4);
        transform: scale(1.01);
    }

.owned .card__link,
.owned .card__exit,
.owned .card__icon {
    position: relative;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
}

    .owned .card__link::after {
        position: absolute;
        top: 25px;
        left: 0;
        content: "";
        width: 0%;
        height: 3px;
        background-color: rgba(255, 255, 255, 0.6);
        transition: all 0.5s;
    }

    .owned .card__link:hover::after {
        width: 100%;
    }

.owned .card__icon {
    grid-row: 2/3;
    font-size: 30px;
}

.owned .card__title {
    grid-row: 3/4;
    font-weight: 400;
    color: #ffffff;
}

.owned .card__apply {
    grid-row: 4/5;
    align-self: center;
}


/* RESPONSIVE */

@media (max-width: 1600px) {
    .owned .cards {
        justify-content: center;
    }
}
