body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #F1F6F9;
    
}

.wrapper{
    margin: 0;
    padding: 0;
    
}
header{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background-color: #394867;
}
header h1{
    color: #ffffff;
    text-align: center;
}

.logo{
    width: 120px;
}

nav{
    background-color: #212A3E;
    display: flex;
    justify-content: center;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.menu li{
    display: inline;
    padding: 25px;
    
}
.menu li a{
    text-decoration: none;
    color: rgb(255, 255, 255);
    transition: .3s ease-in-out;
    padding: 10px;
    
}
.menu li a:hover{
    text-decoration: underline;
    background-color: #394867;
    border-radius: 40px;
    padding: 10px;
}
footer{
    text-align: center;
    font-weight: bold;
    margin: 0%;
    padding: 0%;
}
.top{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0px;
}

.banner{
    background-image: url('gambar/barang bekas.jpg');
    background-size: cover;
    margin-top: 0px;
    height: 300px;
    display: flex;
    align-items: center;
    width: 100%;
}
.banner h2{
    margin-top: 0px;
    color: white;
    letter-spacing: 2px;
    width: 500px;
    font-size: 35px;
    margin-left: 40px;
    
}
.icon{
    width: 200px;
    background-color: #ffffff;
    border-radius: 50%;
    position: relative;
    top: -50px;
    box-shadow: 0px 4px 9px rgba(0, 0, 0, 0.2); 
    transition: 0.3s ease-in-out;
    
}

.icon:hover{
    transform: scale(1.1);
}

.about-container{
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}
.about-us{
    text-align: center;
    width: 600px;
}
.about-us h1{
    margin-top: 0px;
}
@media screen and (max-width:650px){
    .menu li{
        padding: 0px;
    }
    
}