* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background: #000000;
    background: linear-gradient(36deg, rgba(0, 0, 0, 1) 16%, rgba(117, 117, 117, 1) 63%, rgba(255, 255, 255, 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: 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: black;
    font-size: 14px;
}

.nav-link:hover {
    color: rgb(167, 167, 167);
}

.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 100px 0;
}

.column-1 {
    margin-left: 50px;
    position: relative;
}

h2 {
    font-size: 54px;
}

h3 {
    font-size: 30px;
    color: #515151;
    font-weight: 100;
    margin: 20px 0;
}

.column-1 p {
    font-size: 16px;
    color: #515151;
    font-weight: 100;
}

.column-1::before{
    content: "";
    width: 10px;
    height: 57%;
    background: #000000;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(117, 117, 117, 1) 35%, rgba(212, 212, 212, 1) 100%);
    position: absolute;
    left: -40px;
    top: 8px;
}

h4 {
    font-size: 20px;
    color: #000000;
    margin: 30px 0;
}

.buy {
    width: 140px;
    border: none;
    padding: 12px 10px;
    outline: none;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    z-index: 2;
    background: linear-gradient(36deg,rgba(0, 0, 0, 1) 16%, rgba(117, 117, 117, 1) 63%, rgba(255, 255, 255, 1) 100%);
}

.buy:hover {
    transition: transform 0.3s ease;
    transform: scale(1.2);
}

.column-2 {
    display: flex;
    align-items: center;
    position: relative;
}

.controller {
    width: 90%;
    z-index: 2;
    animation: moveController 2s infinite alternate ease-in-out;
}

.controller {
    width: 90%;
    z-index: 2;
}

.color-box {
    position: absolute;
    right: 0;
    top: 0;
    background: linear-gradient(36deg,rgba(0, 0, 0, 1) 16%, rgba(117, 117, 117, 1) 63%, rgba(255, 255, 255, 1) 100%);
    height: 100%;
    width: 80%;
    border-radius: 20px 0 0 20px;
    z-index: 1;
    transition: transform 0.3s ease;
    transform: translateX(150px);
}

.add-cart {
    z-index: 2;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

.add-cart img {
    height: 100%;
    width: 100%;
    max-width: 55px;
}

.add-cart img:hover{
    transition: transform 0.3s ease;
    transform: scale(1.2);
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-links img {
    height: 20px;
    margin: 20px;
    cursor: pointer;
}

.social-links img:hover {
    transform: scale(1.2);
}

.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(70)px;
    }

    #menu-list{
        position: relative;
        top: 60px;
        left: 60px;
        overflow: hidden;
        cursor: pointer;
        transition: all 0.8s ease-in-out;
    }

    .menu-icon{
        display: block;
    }

    .nav-li{
        display: block;
        margin-top: 5px;
    }
}

@keyframes moveController {
    from {
        transform: translate(-5%, -5%) rotate(-5deg);
    }
}