* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

body {
  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: 80vw;
  height: 95vh;
  box-shadow: 0 0 1em 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: 50px;
  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: 100px 0 40px 0;
}

.column-1 {
  margin-left: 50px;
  position: relative;
}

h2 {
  font-size: 54px;
}

h3 {
  font-size: 30px;
  color: #707070;
  font-weight: 100;
  margin: 20px 0;
}

.column-1 p {
  font-size: 16px;
  color: #b7b7b7;
  font-weight: 100;
}

.column-1::before {
  content: "";
  width: 10px;
  height: 57%;
  background: linear-gradient(#ff469f, #ff6062);
  position: absolute;
  left: -40px;
  top: 8px;
}

h4 {
  font-size: 20px;
  color: #000;
  margin: 30px 0;
}

.buy {
  width: 140px;
  border: none;
  padding: 12px 10px;
  outline: none;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  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: 90%;
  z-index: 2;
  animation: moveController 2s infinite alternate;
}

.add-cart {
  z-index: 2;
  border: none;
  background: transparent;
  cursor: pointer;
}

.add-cart img {
  height: 100%;
  width: 100%;
  max-width: 55px;
}

.color-box {
  position: absolute;
  right: 0;
  top: 0;
  background: linear-gradient(to right, #ff54a2, #ff575a);
  height: 100%;
  width: 80%;
  border-radius: 20px 0 0 20px;
  z-index: 1;
  transform: translateX(150px);
}

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-links img {
  height: 20px;
  margin: 20px;
  cursor: pointer;
}

.menu-icon {
  width: 25px;
  margin-right: 15px;
  display: none;
}

@media (max-width: 760px) {
  .container {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
    overflow-y: auto;
  }

  .row{
    flex-direction: column-reverse;
  }

  .column-2{
    margin-bottom: 30px;
  }

  .color-box{
    transform: translateX(70px);
  }

  #menu-list {
    position: relative;
    top: 60px;
    left: 60px;
    overflow: hidden;
    transition: all 0.8s ease-in-out;
  }

  .menu-icon {
    display: block;
    cursor: pointer;
  }

  .nav-li {
    display: block;
    margin-top: 5px;
  }

  .social-links{
    position: relative;
    bottom: 30px;
  }
}

@keyframes moveController {
  from {
    transform: translate(+5%, -5%) rotate(-5deg);
  }
}