*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
body{
    font-family: 'Nunito', sans-serif;
}
button{
    font-family: 'Nunito', sans-serif;
}
.logo{
    height:70px;
    width:70px;
}
header{
    display:flex;
    width:80%;
    margin:auto;
    height:10vh;
    align-items:center;
}
.logo-container, .nav-links, .cart{
    display:flex;
}
.logo-container{
    
    flex:1;
}
nav{
 
    flex:2;
}
.nav-links{
justify-content:space-around;
list-style:none;
}
.nav-link{
    color:#5f5f79;
    
}
.nav-link a{
    text-decoration:none;
}
.cart{
    
    flex:1;
    justify-content:flex-end;
}
.logo{
    margin: 5px;
    font-weight:400;
}
.presentation{
    display:flex;
    width:90%;
    margin:auto;
    min-height:80vh;
    align-items:center;
}
.intro-text h1{
    font-size:44px;
    font-weight:500;
    background:linear-gradient(to right, #494964, #6f6f89);
    -webkit-background-clip:text;
    -webkit-text-fill-color: transparent;

}
.intro-text p{
    margin-top:5px;
    font-size:22px;
    color:#585772;
}
.cta{
    padding:50px 0px 0px 0px;
}
.cta-select{
    border:2px solid #c36cbb;
    background:transparent;
    color:#c36cbb;
    width:150px;
    height:50px;
    cursor: pointer;
    font-size:16px;
    
}
.cta-add{
    color:#fff;
    width:150px;
    height:50px;
    cursor: pointer;
    font-size:16px;
    border:none;
    background:#c36cbb;
    margin:30px 0px 0px 30px;
    
}
.introduction{
    flex:1;
    animation:left 1.5s ease;
}
.cover{
    flex:1;
    height:60vh;
}
.cover img{
    height:100%;
    filter:drop-shadow(0px 10px 10px black);
    animation: drop 1.5s ease;
    
}
.laptop-select{
    width:15%;
    display:flex;
    justify-content: space-around;
    position: absolute;
    right:25%;

}
@keyframes drop{
    0%{
        opacity:0;
        transform:translateY(80%);
        
    }
  
    100%{
        opacity:1;
        transform:translateY(0);

    }
}
@keyframes left{
    0%{
        opacity:0;
        transform:translateX(-80%);
        
    }
  
    100%{
        opacity:1;
        transform:translateY(0);

    }
}
@media screen and (max-width:1350px){
    .presentation{
        flex-direction:column;
    }
    .intoduction{
margin-top:5vh;
text-align:center;
    }
    .intro-text h1{
        font-size:30px;
    }
    .intro-text p{
        font-size:18px;
    }
     .cta{
         padding:10px 0px 0px 0px;
     }
     .laptop-select{
         bottom:5%;
         right:50%;
         width:50%;
         transform:translate(50%,5%);
     }
     .laptop-select i{
         opacity:.5;
     }
        .cover img{
            width:100%;
            filter:drop-shadow(0px 10px 10px black);
            animation: drop 1.5s ease;
            height:45vh;
            
        }
        h4{
            display:none;
        }
        nav .nav-links{
            display:none;
            width:100%;
            background:silver;
            margin-top:2px;
        }
      .laptop-select i:hover{
        background:rgb(223, 12, 128);
        border-radius:50%;
        color:#fff;
        padding:1px;
        transition: ease .5s;
      }
    }
