*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
ul{
    list-style: none;
}
a{
    text-decoration: none;
}
body{
    background-color: #a4152c;
    height: 100vh;
}
.container{
    max-width: 1200px;
    margin: 0 auto; 
}
h2{
    font-size: 2rem;
    margin: 2rem 0;
    font-family: 'Marvel', sans-serif;
    text-align: center;
    font-weight: 500;
    color: #fff;
}
.box{
    width: 350px;
    height: 610px;
    background: #1e1e26;
    border-radius: 10px;
    box-shadow: 2px 10px 12px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    margin: 20px 10px;
    padding: 10px;
}
.box:hover{
    background: #17171d;
    transform-style: preserve-3d;
    transform: scale(1.02);
    transition: all ease 0.3s;
}
.box:hover .marvel{
    color: #c0292b;
    transition:  all ease 0.5s;
}
.logo{
    width: 60px;
    height: auto;
}
.model{
    height: 300px;
    max-height: 100%;
}
.details{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
}

.details p{
    font-family: calibri;
    font-weight: bold;
    color: #6a6a74;
    text-align: center;
    margin-top: 20px;
    font-size: 15px;

}
.marvel{
    color: #32323e;
    font-weight: bold;
    letter-spacing: 2px;
    font-family: 'Marvel', sans-serif;
    font-size: 30px;
}
.cS-hidden {
    height: 1px;
    opacity: 0;
    filter: alpha(opacity=0);
    overflow: hidden;
}

@media(max-width: 720px){
    .box{
        width: 90%;
        height: 500px;
    }
    .model{
        height:250px;
    }
    .details p{
        font-size: 16px;
        width: 250px;
    }
    .logo{
        width: 45px
    }
}