*{
    box-sizing: border-box;
}
body{
    padding: 0;
    margin: 0;
    text-align: center;
}
#main-container{
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
h2, p{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: left;
}
h1{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
}
.id{
    font-size: .8em;
    color: #0071e3;
    font-weight: 700;
    margin: 0;
}
#content-list{
    width: 1000px;
}
.item-container{
    display: flex;
    flex-direction: row;
    
}
.item-photo{
    width: 300px;
    height: 300px;
}
.item-description{
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 300px;
    width: 100%;
    background-color: #f1f1f1;
    margin-bottom: 20px;
}
.button{
  background-color: #0071e3;
  color: white;
  font-size: 1.2 em;
  padding: 12px 30px;
  border-radius: 40px;
  margin: 10px 0 0 0;
  text-decoration: none;
  cursor: pointer;
  width: fit-content;
  border: 0;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.button:hover{
  background-color: #0078f1;
  font-size: 1.2 em;
  cursor: pointer;
}

strong{
    color: #0071e3;
}

#author{
    width: 100%;
    text-align: center;
    font-size: .8em;
}