h2 {
    margin: 1rem auto;
}

a {
    text-decoration: none;
}

.tab {
    display: flex;
    width: fit-content;
    max-width: 95%;
    border-radius: 5px;
    margin: .5rem auto;
}

.tabContent {
    display: none;
    animation: fadeEffect 2.5s;
    text-align: center;
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.pictureCard {
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    margin: 1rem auto;
    justify-content: center;
    justify-items: center;
    align-content: center;
    align-items: center;
    max-width: 650px;
}

.pictureCard img {
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.pictureCardContent {
    justify-items: left;
    padding: 1rem;
}

.dbzCard {
    margin: 1rem auto;
    box-shadow: 0 4px 16px 0 #FFDBE9;
    max-width: 95%;
    -webkit-animation: slide-in-elliptic-top-fwd 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-in-elliptic-top-fwd 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.dbzCard:hover {
    box-shadow: 0 4px 16px 0 #FFDBE9;
}

@-webkit-keyframes slide-in-elliptic-top-fwd {
    0% {
        -webkit-transform: translateY(-600px) rotateX(-30deg) scale(0);
        transform: translateY(-600px) rotateX(-30deg) scale(0);
        -webkit-transform-origin: 50% 100%;
        transform-origin: 50% 100%;
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0) rotateX(0) scale(1);
        transform: translateY(0) rotateX(0) scale(1);
        -webkit-transform-origin: 50% 1400px;
        transform-origin: 50% 1400px;
        opacity: 1;
    }
}

@keyframes slide-in-elliptic-top-fwd {
    0% {
        -webkit-transform: translateY(-600px) rotateX(-30deg) scale(0);
        transform: translateY(-600px) rotateX(-30deg) scale(0);
        -webkit-transform-origin: 50% 100%;
        transform-origin: 50% 100%;
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0) rotateX(0) scale(1);
        transform: translateY(0) rotateX(0) scale(1);
        -webkit-transform-origin: 50% 1400px;
        transform-origin: 50% 1400px;
        opacity: 1;
    }
}


@media (min-width: 600px) {
    .tab {
        max-width: 100%;
    }

    .dbzCard {
        max-width: 750px;
    }
}