* {
    margin: 0;
    padding: 0;
}

body {
    width: 100%;
    height: 100vh;
    margin: auto;
}

/* HEADER */
header {
    width: 80%;
    margin: 20px auto;
    display: flex;
    justify-content: space-between;
    border: 1px solid red;
}
.logo {
    width: 40px;
    height: 40px;
    background: brown;
    border-radius: 50%;
}
.nav-links {
    width: 25%;
    margin-right: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-link {
    width: 40%;
    border: 1px solid green;
    text-align: center;
    text-decoration: none;
}

/* !HEADER! */


/* ABOUT SECTION */
#about {
    width: 80%;
    margin: 5% auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
h1 {
    border: 1px solid blue;
}
.service-details {
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.service-detail {
    margin: 10px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.detail-img {
        width: 40px;
        height: 40px;
        background: orange;
        border-radius: 50%;
    }

/* INDIVIDIUAL */
.delivery {}
.save-money{}
.great-range {}

/* GROUPED */
.delivery,
.save-money,
.great-range {

}

/* !ABOUT SECTION! */
