body{
  margin: 0px;
  padding: 0px;
}

ul{
  list-style: none;
}

a{
  text-decoration: none;
}

.container{
  width: 100%;
  height: 100vh;
  background-color: #a4152c;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box{
  width: 350px;
  background-color: #1e1e26;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  margin: 20px 10px;
  padding: 20px 0px;
}

.model{
  height: 300px;
  max-width: 100%;
  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;
}

.marvel{
  color: #32323e;
  font-weight: bold;
  letter-spacing: 2px;
  font-family: bebas kai;
  font-size: 25px;
}

.logo{
  height: 60px;
}

.box:hover{
  background-color: #17171d;
  transform-style: preserve-3d;
  transform: scale(1.02);
  transition: all ease 0.3s;
}

.box:hover .marvel{
  color: #c0292b;
  transition: all ease 0.5s;
}

@media(max-width:720px){
  .box{
    width: 94%;
    padding: 10px 0px;
  }
  .model{
    height: 150px;
  }
  .logo{
    height: 40px;
  }
  .details p{
    font-size: 16px;
    width: 250px;
  }
}
