* {
    /*border: 1px solid grey;*/
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100vh;
    width: 100vw;
}

body {
    background-color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.9em;
    letter-spacing: 0.4px;
    margin: 0;
    padding: 0;
}


/* HEADER */

header {
    color: gray;
    -webkit-box-shadow: -2px 5px 6px -6px rgba(0, 0, 0, 0.17);
    -moz-box-shadow: -2px 5px 6px -6px rgba(0, 0, 0, 0.17);
    box-shadow: -2px 5px 6px -6px rgba(0, 0, 0, 0.17);
    height: 50px;
}

header ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header ul li {
    display: inline;
    /*margin: 0 0 auto;**/
}


/* BUTTONS */

header ul li .top-button {
    border: 1px solid #dcdcdc;
    padding: 10px 11px;
    color: #131313;
    border-radius: 2px;
    font-size: 1em;
    background-color: #ffffff;
    margin: 5px;
    cursor: pointer;
}

header ul li .top-button:hover {
    background-color: #e9e5e5;
}


/* LINKS */

header ul li a:link,
a:visited {
    color: #2b2727;
    text-decoration: none;
}

header ul li a:hover {
    color: #000000;
}


/* SEARCH */

header ul li form {
    border: 1px solid #dcdcdc;
    padding: 1px 8px;
    border-radius: 2px;
    /* outline: none; */
}


/*removing chrome & safari button default style*/

header ul li input[type=search] {
    -webkit-appearance: none;
    -moz-appearance: none;
}

header ul li input[type=search] {
    /* border: 1px solid #dcdcdc; */
    padding: 10px 11px;
    border-radius: 2px;
    font-size: 14px;
}

header ul li input[type=search]:focus {
    outline: none;
}


/* 3. box shadow */


/* header ul li input:focus {
    border-color: red;
    border: 1px solid #faf5f5;
} */

.right {
    margin: auto;
}

header ul li:last-child {
    margin-right: 40px;
}

header ul li:first-child {
    margin-left: 40px;
}

header ul .logo {
    /* color: #000000; */
    font-size: 18px;
}

header ul .logo i {
    font-size: 22px;
    font-weight: bold;
}


/* 1 inline vs inline block 2 transition 3 boxshadow 4 outline */

section {
    display: flex;
    margin: 30px;
    flex-wrap: wrap;
}

article {
    padding: 15px;
    justify-content: flex-start;
}

p {
    font-size: 1em;
    color: grey;
}

i {
    color: rgb(94, 163, 94);
}

img {
    width: 70%;
}


/*responsive*/