@charset "UTF-8";
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-size: 0;
}

.download a {
  font-size: 20px;
  color: blue;
}

.download {
  width: 200px;
  position: absolute;
  bottom: 0;
  right: 0;
  margin-right: 5%;
  margin-bottom: 7.5%;
}

input:checked ~ ul .buttons {
  display: block;
}

.buttons {
  display: none;
}

label::before {
  content: "Меню";
  font-size: 50px;
}

ul :nth-child(1)::before {
  content: "Пункт 1";
  font-size: 30px;
}

ul :nth-child(2)::before {
  content: "Пункт 2";
  font-size: 30px;
}

ul :nth-child(3)::before {
  content: "Пункт 3";
  font-size: 30px;
}

body {
  background-color: aquamarine;
}

input {
  display: none;
}

label, li {
  display: block;
  width: 250px;
  cursor: pointer;
  text-align: center;
  border-radius: 3px;
  box-shadow: inset 0 0 3px 3px rgba(0, 0, 0, 0.5);
}

.wrapper {
  display: flex;
  min-height: 100vh;
  justify-content: center;
  margin-top: 100px;
}

label {
  background-image: linear-gradient(to right top, darkred, pink);
}

li {
  background-image: linear-gradient(to right top, pink, white);
}

input:checked + label {
  background-image: url(../add/pictures/up-arrrows.png), linear-gradient(to right top, darkred, pink);
  background-repeat: no-repeat, no-repeat;
  background-size: 10%, 100%;
  background-position: 95% 65%, left top;
}

/*# sourceMappingURL=style.css.map */
