* {
  margin: 0;
  padding: 0;
}
body {
  background-repeat: no-repeat;
  font-family: work-sans, sans-serif;
  background-color: hsl(275, 100%, 97%);
}
.container {
  max-width: calc((100% / 3));
  margin: auto;
  margin-top: 50%;
  background-color: white;
  padding: 50px;
  border-radius: 10px;
}
.title {
  display: flex;
}
h1 {
  margin-left: 10px;
}
.container div {
  padding-bottom: 10px;
}
.container .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
span {
  color: #a3a2a2;
}
img {
  cursor: pointer;
}
@media (max-width: 376px) {
  body {
    background-image: url(assets/images/background-pattern-mobile.svg);
  }
  img {
    width: 20px;
    height: 20px;
  }
  h1 {
    font-size: 20px;
  }

  .container {
    max-width: calc((100% / 1.5));
    margin: auto;
    margin-top: calc(50% - 50px);
    background-color: white;
    padding: 10px;
    border-radius: 10px;
  }
  span {
    font-size: 10px;
    line-height: -10px;
  }
}
.open span {
  display: block;
}
.close span {
  display: none;
}
.me {
  margin: 50px auto 0;
  width: fit-content;
  color: hsl(292, 16%, 49%);
}
@media (min-width: 376px) {
  body {
    background-image: url(assets/images/background-pattern-desktop.svg);
  }
  .container {
    max-width: calc((100% / 2));
    margin: 50% auto;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
  }
}
@media (min-width: 490px) {
  body {
    background-image: url(assets/images/background-pattern-desktop.svg);
  }
  .container {
    max-width: calc((100% / 2));
    margin: 40% auto;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
  }
}
@media (min-width: 600px) {
  body {
    background-image: url(assets/images/background-pattern-desktop.svg);
  }
  .container {
    max-width: calc((100% / 2));
    margin: 30% auto;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
  }
}
@media (min-width: 850px) {
  body {
    background-image: url(assets/images/background-pattern-desktop.svg);
  }
  .container {
    max-width: calc((100% / 3));
    margin: 10% auto;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
  }
}
@media (min-width: 1440px) {
  body {
    background-repeat: repeat-x;
  }
}
