body {
    margin: 0;
    padding: 0;
    font-family: "Montserrat";
}

/*
Challenge:
1. Get this layout looking like the 
   screenshots on the slide.
*/  

header {
    background: #282828;
    
    /* border: 1px solid red; */
}

ul {
    display: flex;
    align-items: center;
    margin: 0;
    color: whitesmoke;
    list-style-type: none;
    padding: 25px;
    gap: 10px;
}

#menu {
    margin-left: auto;
}

li {
    cursor: pointer;
}

.logo {
    font-size: 18px;
    font-weight: 700;
}

.icon {
    width: 25px;
}

h1 {
    font-size: 40px;
    font-weight: 400;
    margin: 30px 25px;
}

.caption {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 0 25px;
}

.item-img {
    display: block;
    width: 100%;
}

.img-banner {
    position: absolute;
    top: 0;
    left: 0;
    background: #cd6858;
    color: whitesmoke;
    padding: 10px;
}

.item {
    position: relative;
}

button {
    /* margin: auto; */
    align-self: center;
    border: none;
    background: #cd6858;
    color: whitesmoke;
    padding: 10px 15px;
    font-weight: 700;
    cursor: pointer;
}

.chatbox-bg {
    display: flex;
    background: #dda15e;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 1px 1px 5px #999;
    position: fixed;
    bottom: 6px;
    right: 6px;
}

.chatbox-img {
    width: 50%;
    margin: auto;
}