* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
  }
  
  body {
    background: rgb(0, 212, 255);
    background: linear-gradient(
      48deg,
      rgba(0, 212, 255, 1) 0%,
      rgba(251, 82, 131, 1) 100%
    );
  
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .container {
    width: 80%;
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    background-color: white;
    display: flex;
    flex-direction: column;
    padding: 10px;
    overflow: hidden;
  }
  
  .navbar {
    width: 100%;
    display: flex;
    align-items: center;
  }
  
  .logo {
    width: 45px;
    margin: 30px 0;
  }
  
  nav {
    width: 100%;
    text-align: right;
  }
  
  li {
    list-style: none;
    display: inline-block;
    margin-right: 30px;
  }
  
  .nav-link {
    cursor: pointer;
    text-decoration: none;
    color: #000;
    font-size: 14px;
  }
  
  .nav-link:hover {
    color: #fb5283;
  }
  
  .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 43px 0;
  }
  
  .column-1 {
    margin-left: 50px;
    position: relative;
  }
  
  h2 {
    font-size: 44px;
  }
  
  h3 {
    font-size: 19px;
    color: #707070;
    font-weight: 100;
    margin: 20px 0;
  }
  
  .column-1 p {
    font-size: 14px;
    color: #b7b7b7;
    font-weight: 100;
  }
  
  .column-1::before{
      content: "";
      width: 10px;
      height: 55%;
      background: linear-gradient(#ff469f, #ff6062);
      position: absolute;
      left: -40px;
      top: 8px;
  }
  
  
  h4 {
    font-size: 17px;
    color: #000;
    margin: 30px 0;
  }
  
  .buy {
    width: 140px;
    border: none;
    padding: 12px 10px;
    outline: none;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    z-index: 2;
    background: linear-gradient(to right, #fb5283, #ff3527);
    transition: all 0.5s ease-in-out; 
  }

  .buy img{
    width: 30px;
    display: none;
}

.buy:hover{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 160px;
}

.buy:hover img{
    display: block;
}
  
  .column-2 {
    display: flex;
    align-items: center;
    position: relative;
  }
  
  .controller {
    width: 55%;
    margin-left: 180px;
    z-index: 2;
    animation:moveController 2s infinite alternate ease-in-out;
  }
  
  .color-box {
    position: absolute;
    right: 0;
    top: 0;
    background: linear-gradient(#ff54a2, #ff575a);
    height: 100%;
    width: 65%;
    border-radius: 20px 0 0 20px;
    z-index: 1;
    transform: translateX(150px);
  }
  
  .add-cart {
    z-index: 2;
    border: none;
    background-color: transparent;
    cursor: pointer;
  }
  
  .add-cart img {
    height: 100%;
    width: 100%;
    max-width: 40px;
  }
  
  .social-links {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .social-links img {
    height: 15px;
    margin: 15px;
    cursor: pointer;
  }


  .menu-icon{
    width: 25px;
    margin-right: 15px;
    display: none;
  }


  @media screen and (max-width: 750px) {

    .container {
      width: 100vw;
      height: 100vh;
      border-radius: 0;
      overflow-y: auto;
    }
  
    #menu-list {
        position: relative;
      top: 60px;
      left: 60px;
      overflow: hidden;
      transition: all 0.8s ease-in-out;
    }
  
    .menu-icon {
      display: block;
    }
  
    .nav-li {
      display: block;
      margin-top: 5px;
    }
  
    .row{
      flex-direction: column-reverse;
    }
  
    .color-box{
      transform: translateX(0.2rem);
    }
  
    .column-2{
      margin: 30px 0;
    }

    .controller{
       margin: auto;
       width: 70%;
    }

    .buy{
        align-items: center;
        justify-content: center;
        text-align: center;
        left: auto;
        right: auto;
        display: flex;
    }

    h2{
        font-size: 40px;
      
    }
  
  
    
  
  }

  @keyframes moveController {
    from{
        transform: translate(-5%, -5%) rotate(-5deg);
    }
  }