body {
  font-family: 'Open Sans', sans-serif;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

.background {
  background-color: #fff;
}

.main {
  max-width: 600px;
  background-color: #fff1e6;
  background-image: url("/img/kropki3.png");
  background-size: contain;
  margin: 0 auto;
  min-height: 100vh;
}

.main-list {
  margin: 0 auto;
  width: 60%;
}

.main-list ul {
  padding-top: 30px;
  padding-bottom: 30px;
}

.main-list ul li {
  text-align: center;
  margin-bottom: 20px;
  border: 5px solid #474242;
  padding: 8px 0;
  font-size: 14px;
  transition: 0.5s;
}

.main-list ul li a {
  text-decoration: none;
  color: inherit;
}

.main-list ul li:hover {
  cursor: pointer;
  background-color: #474242;
  color: #fff;
}

.main-heading {
  text-align: center;
  padding: 30px 0;
  font-size: 35px;
  font-weight: 700;
  font-family: anton;
}

.img-cols {
  display: flex;
}

.img-col1 {
  width: 60%;
}

.img-col2 {
  width: 40%;
}

.img-col1 {
  text-align: center;
  padding-right: 5px;
}

.img-col2 {
  text-align: left;
  padding-top: 30px;
}

@media only screen and (max-width: 600px) {
  .img-cols {
    flex-direction: column;
  }

  .img-col1,
  .img-col2 {
    width: 100%;
    text-align: center;
  }

  .img-col2 {
    padding-top: 15px;
  }