@import url('https://fonts.googleapis.com/css2?family=Epilogue:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Kumbh+Sans:wght@100..900&family=Outfit:wght@100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
}
body{
    background-color:  hsl(0, 0%, 98%);
    font-family: "Epilogue", sans-serif;
}
header{
    display: flex;
    padding: 20px;
    font-size: 13px;
}
header .btn a button{
    width: 100px;
    height: 40px;
}
.hamburger{
    display: none;
    flex-direction: column;
    position: absolute;
    gap: 5px;
    width: 90%;
    justify-content: end;
    align-items: end;
}
.hamburger span{
    background-color: black;
    width: 30px;
    height: 2px;
    border-radius: 5px;
}
nav{
    display: flex;
    gap: 40px;
    align-items: center;
}
nav a{
    color: hsl(0, 0%, 41%);
    text-decoration: none;
}
nav a:hover{
    color: hsl(0, 0%, 8%);
}
.drop{
    display: flex;
    gap: 40px;
}
.btn{
    display: flex;
    padding-left: 650px;
    gap: 20px;
    align-items: center;
}
.btn a{
    color: hsl(0, 0%, 41%);
    text-decoration: none;
}
.btn a button{
    background-color: hsl(0, 0%, 98%);
    color: hsl(0, 0%, 41%);
    border-color: hsl(0, 0%, 41%);
    border-radius: 10px;
}
/* Dropdown Button */
.dropbtn {
    background-color: hsl(0, 0%, 98%);
    color: white;
    /* padding: 16px; */
    font-size: 16px;
    border: none;
    width: 70px;
    height: 30px;
    border-radius: 8px;
  }
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: hsl(0, 0%, 98%);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    /* z-index: 1; */
    /* margin-top: 1px; */
    margin-bottom: 20px;
    border-radius: 10px;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    color: hsl(0, 0%, 41%);
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    gap: 10px;
    align-items: center;
  }
  
  /* Change color of dropdown links on hover */
  /* .dropdown-content a:hover {background-color: #52555a;} */
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {display: block;}
  
  /* Change the background color of the dropdown button when the dropdown content is shown */
  .dropdown:hover .dropbtn {background-color: #3e8e41;}
main{
    display: flex;
    justify-content: center;
    margin-top: 50px;
    gap: 100px;
} 
.all{
    display: flex;
    gap: 100px;
}
.image img{
    height: 80vh;
}
.remote{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}
.remote h1{
    font-size: 80px;
    font-weight:700 ;
    color: hsl(0, 0%, 8%);
}
.remote button{
    height: 60px;
    width: 170px;
    background-color: hsl(0, 0%, 8%);
    color: hsl(0, 0%, 98%);
    font-size: 20px;
    border-radius: 15px;
    border: none;
}
.mobp{
    display: none;
}
.remote p{
    color: hsl(0, 0%, 41%);
    font-size: 18px; 
    justify-content: space-around;
} 
.remote button:hover{
    background-color: hsl(0, 0%, 98%);
    color: hsl(0, 0%, 8%);
    border: none;
    border-color: hsl(0, 0%, 8%);
    transition: 1s;
} 
.logos{
    display: flex;
    gap: 40px;
} 

.logos img{
    width: 70px;
    height: 20px;
    animation: floating 2s ease-in-out infinite;
    /* transition: 0.3s; */
}
@keyframes floating {
    0% {
        transform: translateY(0%);
    }
    50%{
        transform: translateY(-10%);
    }
    100%{
        transform: translateY(0%);
    }
}

.image .mobile{
    display: none;
}
@media screen and (max-width:768px){
    .hamburger{
    display: flex;
    
}
body{
    width: 320px;
    height: 100%;
}
.drop .dropdown{
    position: absolute;
    right: 0;
    z-index: 999;
    width: 160px;
    height: 100vh;
    background-color: #fff;
    transition: 0.2s;
    box-shadow: 2px 0 20px rgba(0,0,0,0.05);
}
.drop{
    display:none;
    position: absolute;
    right: 0;
    z-index: 999;
    width: 160px;
    height: 100vh;
    background-color: #fff;
    transition: 0.2s;
    box-shadow: 2px 0 20px rgba(0,0,0,0.05);
}
.image .desktop{
    display: none;
}
main{
    padding-bottom: 50px;
}
main .all{
    flex-direction: column-reverse;
    gap: 50px;
}
.image .mobile {
    display: flex;
    justify-content: center;
    
}
.image .mobile img{
    width: 320px;
    height: 270px;
}
.btn{
    display: none;
}
.remote{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
}
.remote .make{
    display: flex;
    gap: 5px;
}
.remote h1{
    font-size: 30px;
    font-weight:700 ;
    color: hsl(0, 0%, 8%)
}
.remote p{
    font-size: 16px;
}
.deskp{
    display: none;
}
.mobp{
    display: flex;
}
.mobp p{
    font-size: 14px;
}
.logos{
    display: flex;
    gap: 20px;
    margin-top: 50px;
}
.logos img{
    width: 60px;
}

} 
