body {
    background: #fffcf2;
    color: #252422;
    margin: 0px;
    font-family: 'Merriweather', serif;
    overflow-x: hidden;
}

h1 {
    color: #eb5e28;
    font-size: 50px;
}

h2 {
    color: #eb5e28;
}

a {
    color: #ada79b;
}

header {
    background: #403d39;
    color: #ccc5b9;
    width: 100px;
    padding: 10px;
    font-size: 30px;
    display: flex;
    align-items: center;
}

p {
    text-align: justify;
}

.img {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.def {
    margin: 10px;
    margin-right: 20%;
    margin-left: 20%;
}

.list {
    margin: 10px;
}

.list-item {
    color: #eb5e28;
    font-size: 25px;
    font-weight: bold;
}

.list-item::after {
  content: "";
  height: 0.5em;
  border-top: 1px solid black;
  z-index: -1;
}

/* Mobile style */

@media only screen and (max-width: 600px) {
    .def {
        margin-right: 10px;
        margin-left: 10px;
    }

    .img {
        width: 90%;
    }
}				