@import url("https://fonts.googleapis.com/css?family=Cairo");
*,
*:before,
*:after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

html,
body {
  min-height: 100vh;
  width: 100vw;
  padding: 0;
  margin: 0;
}

.list {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 16px;
  padding: 16px;
}
.list__item {
  flex: 1 0 auto;
  display: inline-flex;
  flex-direction: row;
  font-family: "Cairo", sans-serif;
  text-decoration: none;
  color: rgb(36, 9, 9);
  
  
}
.list__item:hover {
  background-color: rgba(232, 216, 216, 0.05);
}
.list__item__image {
  width: 65px;
  height: 65px;
  border-radius: 10%;
  background-color: rgb(229, 230, 236);
}
.list__item__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 15px;
}
.list__item__title {
  margin-bottom: 10px;
}
.list__item__description {
  font-size: 12px;
  letter-spacing: 1px;
  color: rgb(144, 144, 144);
  text-transform: uppercase;
}

@media (min-width: 600px) {
  .list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .list {
    grid-template-columns: repeat(3, 1fr);
  }
}