*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}
.container{
    width: 100%;
    height: 100%;
    background: #42455a;
}
.menu ul{
    display: inline-flex;
    margin: 50px;
}
.menu ul li{
    list-style: none;
    margin: 0 20px;
    color: #b2b1b1;
    cursor: pointer;
}
.menu ul li:hover{
    color: #19dafa !important;
}
.logo img{
    width: 60px;
    margin-top: -7px;
    margin-right: 48px;
}
.active{
    color: #19dafa !important;
}
.signup-btn{
    top: 40px;
    right: 80px;
    position: absolute;
    text-decoration: none;
    color: #fff;
    border: 2px solid transparent;
    border-radius: 20px;
    background-image: linear-gradient(#42455a, #42455a), radial-gradient(circle at top left, #fd00da,#19d7f8);
    background-origin: border-box;
    background-clip: content-box,border-box;   
}
.signup-btn span{
    display: block;
    padding: 8px 22px;
}
.signup-btn span:hover{
    color: #19dafa !important;
}

.banner{
    width: 80%;
    height: 70%;
    top: 20%;
    left: 150px;
    position: absolute;
    color: #fff;
}
.app-text{
    width: 50%;
    float: left;
}
.app-text h1{
    font-size: 43px;
    width: 640px;
    position: relative;
    margin-left: 40px;   
}
.app-picture{
    width: 30%;
    float: right;
}
.app-picture img{
    width: 100%;
    margin-top: -20px;
    padding-left: 50px;
}
.play-btn{
    margin-left: 40px;
    display: inline-flex;
}
.play-btn{
    text-decoration: none;
}
.play-btn-inner{
    height: 50px;
    width: 50px;
    border: 2px solid transparent;
    border-radius: 50px;
    background-image: linear-gradient(#42455a, #42455a), radial-gradient(circle at top left, #fd00da,#19d7f8);
    background-origin: border-box;
    background-clip: content-box,border-box;
    text-align: center;
}
.play-btn-inner .fa{
    padding: 18px 0;
    font-size: 13px;
    cursor: pointer;
}
small{
    margin: auto 20px;
    cursor: pointer;
    font-size: 12px;
    color: #19dafa;
    letter-spacing: 3px;
}
.quick-links{
    width: 620px; 
    left: 10px;
    bottom: 10px;
    position: absolute;
    background: linear-gradient(to right, #db1bf6, #19d7f8);
}
.quick-links ul{
    display: inline-flex;
    margin: 30px auto;
    text-align: center;
}
.quick-links ul li{
    list-style: none;
    margin: 0 50px;
    cursor: pointer;
}
.quick-links ul li a{
    text-decoration: none;
}
.social-icons{
    right: 20px;
    bottom: 25px;
    position: absolute;
}
.social-icons ul li{
    list-style: none;
    margin-top: 15px;
    text-align: center;
}
.social-icons ul li a{
    color: #999;
    border-radius: 50%;
    border: 1px solid #999;
    padding: 5px;
    display: block;
}










.cardcontainer {
    margin-left: 40px;
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .card {
    transform-style: preserve-3d;
    height: 35vh;
    /* width: 20rem; */
    border-radius: 30px;
    padding: 0rem 5rem;
    box-shadow: 0 20px 20px rgba(0, 0, 0, 0.2), 0px 0px 50px rgba(0, 0, 0, 0.2);
  }
  
  .sneaker {
    max-height: 12vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .sneaker img {
    width: 8rem;
    z-index: 2;
    transition: all 0.75s ease-out;
    border-radius: 50%;
  }
  .circle {
    width: 9rem;
    height: 9rem;
    background: linear-gradient(
      to right,
      rgba(245, 70, 66, 0.75),
      rgba(8, 83, 156, 0.75)
    );
    position: absolute;
    border-radius: 50%;
    z-index: 1;
  }
  
  .info h3 {
    margin-top: 30px;
    font-size: 1.2rem;
    transition: all 0.75s ease-out;
  }
  .info h5 {
    margin-top: -10px;
    font-size: .9rem;
    padding: 2rem 0rem;
    color: white;
    font-weight: lighter;
    /* transition: all 0.75s ease-out; */
  }
