img {
  min-width: 200px;
  max-width: 600px;
  min-height: 200px;
  max-height: 500px;
  object-fit: cover;   /* 아래에서 다룰 속성값 */
  border: 1px solid #000;   /* 요소의 크기를 가늠하기위해 추가 */
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 40%;
}

a{
  background-color: rgb(154, 205, 106);
  color: rgb(11, 121, 38);
  font-size: x-large;
}
h1{
  background-color: antiquewhite;
  color: gray;
}

ul{
  background-color: aquamarine;
}

p{
  background-color: rgb(158, 228, 228);
}
h2{
  font-family:fantasy;
  font-size:xx-large;
}