* {
    padding: 0;
    margin: 0;
}

/* Navbar */
header {
    height: 60px;
    background-color: #0f1111;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

/* Links */
a {
    color: white;
    margin-right: 200px;
    text-decoration: none;
}

/* Amazon logo */
#a1 {
    color: rgb(244, 156, 15);
    font-size: 25px;
    font-weight: bold;
}

/* Search */
input {
    padding: 5px;
}

button {
    background-color: #f08804;
    padding: 6px 10px;
    border: none;
    cursor: pointer;
}

/* Content boxes */
#content {
    display: flex;
    gap: 20px;
    padding: 20px;
}

.div1 {
    height: 100px;
    width: 100px;
    background-color:rgba(0, 0, 255, 0.525);
}

/* Footer */
footer {
    height: 60px;
    background-color: #0f1111;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

