.container {
    box-sizing: border-box;
    background: url('assets/images/background-main-360.png') no-repeat;
    background-position: center;
    background-size: cover;
}
.main-page {
    text-align: center;
}
.logo {
  display: inline-block;
  margin-top: 90%;
}
.main-page h1 {
    padding-top: 20px;
    letter-spacing: 2px;
    font-size: 44px;
    margin-bottom: 50px;
    color: rgb(9, 70, 139);
    font-weight: 800;
}
.main-btns {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 33px;
    margin-bottom: 42px;
}

.main-btns li button {
  width: 268px;
  height: 56px;
  border: 1px solid #FFFFFF;
  background-color: transparent;
  border-radius: 56px;
  color: white;
  font-family: 'Gilroy';
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 1px;
  cursor: pointer;
  -webkit-transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
  transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
}

.main-btns li button:hover {
  color: black;
  box-shadow: 0 0 40px 40px #c2847d inset;
  opacity: 0.7;
  border: 1px solid #c2847d;
}
.btn-settings {
  position: absolute;
  right: 4%;
  top: 2%;
  cursor: pointer;
}

.footer-list {
  display: flex;
  justify-content: space-between;
  color: white;
  font-family: 'Gilroy';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.62766px;
  padding: 0px 10px 5px 10px;
}
.footer-list li:nth-child(2) {
  padding-top: 7px;
}
.footer-list li:nth-child(3) {
  padding-top: 7px;
}

/*settings*/
.settings {
  display: none;
  background-color: black;
  color:white;
  font-family: 'Gilroy';
}
.back-settings {
  padding-left: 23px;
  cursor: pointer;
}
.settings-h2 {
  display: inline-block;
  padding-left: 25%;

  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: -0.5px;
  margin-bottom: 50px;
  padding-top: 28px;
}
.volume {
  padding: 0 31px;
  padding-bottom: 46px;
}
.volume p {
  text-align: center;
  font-weight: bold;
  font-size: 30px;
  line-height: 28px;
  letter-spacing: -0.914286px;
  margin-bottom: 28px;
}

.volume-bnts {
  display: flex;
  justify-content: space-between;
}
.volume-img {
  cursor: pointer;
}
.volume-mute-img {
  cursor: pointer;
}
.input-volume {
  width: 100%;
  height: 3px;
  -webkit-appearance: none;
  background-color: #A4A4A4;
  margin-left: -1px;
  margin-bottom: 24px;
  cursor: pointer;
}



.input-volume::-webkit-slider-thumb {
  width: 16px;
  -webkit-appearance: none;
  height: 16px;
  cursor: pointer;
  background: white;
  border-radius: 50%;
}


.inputs {
  display: flex;
  flex-direction: column;
}
.switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 25px;
}
.game-on-time {
  position: relative;
  padding-bottom: 50px;
}
.game-on-time h3 {
  font-weight: bold;
  font-size: 30px;
  line-height: 28px;
  text-align: center;
  padding-bottom: 22px;
}
.switch-game {
  text-align: center;
}
.span-switch {
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  padding-right: 16px;
  vertical-align: top;
}
/* Hide default HTML checkbox */
.switch input {display:none;}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 21px;
  width: 21px;
  left: 4px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #FFBCA2;
}

input:focus + .slider {
  box-shadow: 0 0 1px #FFBCA2;
}

input:checked + .slider:before {
  -webkit-transform: translateX(18px);
  -ms-transform: translateX(18px);
  transform: translateX(18px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
.time-of-question {
  padding-bottom: 53px;
}
.time-of-question p {
  text-align: center;
  font-weight: bold;
  font-size: 30px;
  line-height: 28px;
  padding-bottom: 21px;
}
.amount_time {
  text-align: center;
}
.amount_time img {
  cursor: pointer;
}
.number {
  font-weight: 500;
  font-size: 26px;
  line-height: 28px;
  background: none;
  color: white;
  text-align: center;
  border: none;
  letter-spacing: -0.5px;
  vertical-align: top;
}
.settings-btns {
  text-align: center;
  padding-bottom: 30px;;
}
.default-btn {
  width: 156px;
  height: 56px;
  border: 1px solid #FFFFFF;
  box-sizing: border-box;
  border-radius: 56px;
  background-color: transparent;
  color: white;
  font-weight: 500;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: -0.4px;
  margin-right: 16px;
  cursor: pointer;
}
.default-btn:hover {
  background-color: rgb(165, 165, 165);
  transition: 0.6s;
}
.save-btn {
  width: 156px;
  height: 56px;
  border: none;
  box-sizing: border-box;
  border-radius: 56px;
  background: #FFBCA2;
  font-weight: 500;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: -0.4px;
  cursor: pointer;
}
.save-btn:hover {
  background-color: rgb(165, 110, 110);
  transition: 0.6s;
}




/*category painters*/
.category-painters {
  display: none;
  background-color: black;
  padding: 23px 10px 15px 16px;
  font-family: 'Gilroy';

}
.images-painters-svg {
  display: flex;
  justify-content: space-between;
  padding-right: 10px;
  padding-bottom: 28px;
}
.btn-settings-categories {
  padding-bottom: 25px;
  cursor: pointer;
}
.category-painters h2 {
  color: white;
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  padding-bottom: 50px;
}
.logo-cat, .logo-cat2  {
  cursor: pointer;
}
.btn-home-painters {
  padding-top: 2%;
  color: white;
  cursor: pointer;
  text-align: end;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: -0.5px;
  margin-left: 25%;
  position: relative;
  height: 30px;
}
.btn-home-painters:hover {
  color: rgb(161, 109, 109);
  font-weight: 700;
}
.btn-home-painters:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0%;
  content: '.';
  color: transparent;
  background: #aaa;
  height: 1px;
}
.btn-home-painters:hover:after {
  width: 100%;
}
.list-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 15px; 
  color: white;
  justify-content: center;
}

.list-categories img {
  width: 100%;
  border-radius: 20px;
}
.list-categories div {
  display: flex;
  flex-direction: column;
  width: 45%;
  border: 3px solid black;
  position: relative;
  cursor: pointer;
}
.text-category {
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: -0.5px;
  display: flex;
  justify-content: space-between;
  padding-bottom: 3px;
}
.page-score {
  display: none;
  width: 32%;
  height: 12%;
  position: absolute;
  right: 4%;
  top: 15%;
  border-radius: 10px;
  border: none;
  font-size: 12px;
  cursor: pointer;
  z-index: 1;
}
.quiz-block {
  background-color: black;
  color: white;
  font-family: 'Gilroy';
}
.back-btn {
  border: none;
  background: transparent;
  color: white;
  cursor: pointer;
}
.question-block {
  padding: 20px 16px 0px 16px;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.overlay {
  display: none;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(1, 1, 1, 0.7);
  position: absolute;
}
.progress-time {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 50px;
}
.progress-time span {
  display: none;
}
.timer-picture {
  display: none;
  filter: sepia(5) brightness(4);
  padding-bottom: 5px;
}
.progress-time div {
  height: 70px;
}
.question {
  font-weight: 500;
  font-size: 22px;
  line-height: 28px;
  font-family: 'Gilroy';
  color: white;
}
.answers-painters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 83px;
  justify-content: center;
}
.answers-painters button {
  width: 158px;
  height: 48px;
  border: 1px solid #FFFFFF;
  box-sizing: border-box;
  border-radius: 56px;
  background-color: transparent;
  color: white;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  text-align: center;
  font-family: 'Gilroy';
  cursor: pointer;
  transition: all 0.4s ease-in;
  position: relative;
}
.answers-painters button:hover {
  background: #FFBCA2;
  color: black;
}

.answers-painters button:before {
  content: '';
  background-color: aliceblue;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: scale(0.001, 0.001);
}
.answers-painters button:focus {
  outline: 0;
  color: #fff;
}
.answers-painters button:focus:before {
  -webkit-animation: effect_dylan 0.8s ease-out;
          animation: effect_dylan 0.8s ease-out;
}
@-webkit-keyframes effect_dylan {
  50% {
    transform: scale(1.5, 1.5);
    opacity: 0;
  }
  99% {
    transform: scale(0.001, 0.001);
    opacity: 0;
  }
  100% {
    transform: scale(0.001, 0.001);
    opacity: 1;
  }
}
@keyframes effect_dylan {
  50% {
    transform: scale(1.5, 1.5);
    opacity: 0;
  }
  99% {
    transform: scale(0.001, 0.001);
    opacity: 0;
  }
  100% {
    transform: scale(0.001, 0.001);
    opacity: 1;
  }
}



.question-image {
  width: 100%;
  border-radius: 20px;
  margin-top: 50px;
  margin-bottom: 50px;
  height: auto;
}
.modal-question, .modal-question2 {
  opacity: 0;
  visibility: hidden;
  transition: 0.6s;
  position: absolute;
  width: 70%;
  background-color: white;
  bottom: 25%;
  left: 15%;
  color: black;
  border-radius: 20px;
  font-family: 'Gilroy';
  z-index: 3;
}
.author-modal, .year-modal, .author-modal2, .year-modal2 {
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  text-align: center;
}
.picture-modal, .picture-modal2 {
  font-size: 18px;
  margin-bottom: 10px;
}
.question-image2, .question-image3 {
  width: 80%;
  margin-top: 20px;
  border-radius: 20px;
  margin-bottom: 15px;
}
.continue-question, .continue-question2 {
  width: 200px;
  height: 42px;
  font-size: 18px;
  display: block;
  margin: 30px auto;
  font-size: 18px;
  line-height: 22px;
  background: #FFBCA2;
  border-radius: 60px;
  border: none;
  color: black;
  cursor: pointer;
}
.continue-question:hover, .continue-question2:hover {
  background-color: rgb(204, 147, 147);
  transition: 0.6s;
}
.results-painters {
  opacity: 0;
  visibility: hidden;
  transition: 0.6s;
}

.modal-to-close {
  opacity: 0;
  visibility: hidden;
  transition: 0.6s;
  width: 94%;
  height: 258px;
  background: white;
  color: black;
  border-radius: 20px;
  position: absolute;
  top: 28%;
  left: 3%;
  z-index: 3;
}
.modal-to-close__btn {
  position: absolute;
  top: 8%;
  right: 7%;
  cursor: pointer;
}
.modal-to-close p {
  width: 70%;
  margin: 0 auto;
  margin-top: 70px;
  font-family: 'Gilroy';
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: -0.5px;
  margin-bottom: 55px;
}
.cancel {
  width: 44%;
  height: 48px;
  border: 1px solid #010101;
  border-radius: 56px;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  background: transparent;
  margin-right: 7px;
  cursor: pointer;
}
.cancel:hover {
  background-color: rgb(201, 197, 197);
  transition: 0.6s;
}

.yes {
  width: 44%;
  height: 48px;
  border: none;
  background: #FFBCA2;
  color: black;
  border-radius: 56px;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  cursor: pointer;
}
.yes:hover {
  background-color: rgb(204, 147, 147);
  transition: 0.6s;
}
.results-painters {
  width: 94%;
  height: 436px;
  background: white;
  color: black;
  border-radius: 20px;
  position: absolute;
  top: 13%;
  left: 3%;
  z-index: 3;
  font-family: 'Gilroy';
  text-align: center;
}
.modal-results-close__btn {
  position: absolute;
  right: 7%;
  top: 5%;
  cursor: pointer;
}
.modal-results-cup {
  margin-top: 68px;
  margin-bottom: 20px;
}
.congr {
  font-weight: 500;
  font-size: 22px;
  line-height: 28px;
  text-align: center;
  margin-bottom: 30px;
}
.score-results {
  font-weight: bold;
  font-size: 48px;
  line-height: 28px;
  text-align: center;
  letter-spacing: -0.5px;
  margin-bottom: 30px;
}
.results-painters__btnHome {
  width: 44%;
  height: 48px;
  border: 1px solid #010101;
  box-sizing: border-box;
  border-radius: 56px;
  margin-right: 10px;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  cursor: pointer;
}
.results-painters__btnHome:hover {
  background-color: rgb(201, 199, 199);
  transition: 0.6s;
}
.results-painters__btnNext {
  width: 44%;
  height: 48px;
  left: 25px;
  top: 465px;
  border: 1px solid #010101;
  box-sizing: border-box;
  border-radius: 56px;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  background: #FFBCA2;
  border: none;
  cursor: pointer;
}
.results-painters__btnNext:hover {
  background-color: rgb(209, 162, 162);
  transition: 0.6s;
}

.author-modal, .year-modal {
  font-style: italic;
}
.results-page, .results-page2 {
  display: none;
  background-color: black;
  padding: 20px 40px;
  font-family: 'Gilroy';
  color: white;
}
.back-btn-pageResults, .back-btn-pageResults2 {
  cursor: pointer;
}
.results-page h2, .results-page2 h2 {
  padding-bottom: 50px;
  font-size: 24px;
  padding-top: 20px;
}
.name-category {
  text-transform: uppercase;
  display: block;
  padding-bottom: 20px;
  font-size: 24px;
}
.score-pageResults, .score-pageResults2 {
  font-size: 20px;
}
.all-images, .all-images2 {
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30%;
}
.image-result {
  width: 15%;
  border-radius: 50px;
  cursor: pointer;
}
.image-result:nth-child(3) {
  filter: grayscale(100%);
}
.image-result:nth-child(6) {
  filter: grayscale(100%);
}
.image-result:nth-child(4) {
  filter: grayscale(100%);
}
.image-result:nth-child(9) {
  filter: grayscale(100%);
}
.image-result:nth-child(10) {
  filter: grayscale(100%);
}




/*category images*/
.category-images {
  display: none;
  background-color: black;
  padding: 23px 10px 15px 16px;
  font-family: 'Gilroy';
}
.category-images h2 {
  color: white;
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  padding-bottom: 50px;
}
.btn-settings-categories2 {
  padding-bottom: 25px;
  cursor: pointer;
}
.btn-home-images {
  padding-top: 2%;
  color: white;
  cursor: pointer;
  text-align: end;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: -0.5px;
  margin-left: 25%;
  height: 30px;
  position: relative;
}
.btn-home-images:hover {
  color: rgb(161, 109, 109);
  font-weight: 700;
}
.btn-home-images:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0%;
  content: '.';
  color: transparent;
  background: #aaa;
  height: 1px;
}
.btn-home-images:hover:after {
  width: 100%;
}
.question-block2 {
  padding: 20px 16px 0px 16px;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.quiz2-block {
  background-color: black;
  color: white;
  font-family: 'Gilroy';
}
.author-question {
  font-weight: 500;
  font-size: 22px;
  line-height: 28px;
  font-family: 'Gilroy';
  color: white;
}
.images-block {
  margin-top: 52px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-bottom: 100px;
}
.images-block img {
  width: 46%;
  border-radius: 20px;
  height: 163px;
  cursor: pointer;
}
.results-images {
  opacity: 0;
  visibility: hidden;
  transition: 0.6s;
}
.progress-time2 {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 50px;
}
.progress-time2 span {
  display: none;
}
.timer-picture2 {
  display: none;
  filter: sepia(5) brightness(4);
  padding-bottom: 5px;
}
.progress-time2 div {
  height: 70px;
}
.modal-to-close2 {
  opacity: 0;
  visibility: hidden;
  transition: 0.6s;
  width: 94%;
  height: 258px;
  background: white;
  color: black;
  border-radius: 20px;
  position: absolute;
  top: 28%;
  left: 3%;
  z-index: 3;
}
.modal-to-close__btn2 {
  position: absolute;
  top: 8%;
  right: 7%;
  cursor: pointer;
}
.modal-to-close2 p {
  width: 70%;
  margin: 0 auto;
  margin-top: 70px;
  font-family: 'Gilroy';
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: -0.5px;
  margin-bottom: 55px;
}
.cancel2 {
  width: 44%;
  height: 48px;
  border: 1px solid #010101;
  border-radius: 56px;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  background: transparent;
  margin-right: 7px;
  cursor: pointer;
}
.cancel2:hover {
  background-color: rgb(189, 187, 187);
}
.yes2 {
  width: 44%;
  height: 48px;
  border: none;
  background: #FFBCA2;
  color: black;
  border-radius: 56px;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  cursor: pointer;
}
.yes2:hover {
  background: #f1926c;
}
.overlay2 {
  display: none;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(1, 1, 1, 0.7);
  position: absolute;
}
.back-btn2 {
  border: none;
  background: transparent;
  color: white;
  cursor: pointer;
}
.results-images {
  width: 94%;
  height: 436px;
  background: white;
  color: black;
  border-radius: 20px;
  position: absolute;
  top: 13%;
  left: 3%;
  z-index: 3;
  font-family: 'Gilroy';
  text-align: center;
}
.modal-results-close__btn2 {
  position: absolute;
  right: 7%;
  top: 5%;
  cursor: pointer;
}
.modal-results-cup2 {
  margin-top: 68px;
  margin-bottom: 20px;
}
.congr2 {
  font-weight: 500;
  font-size: 22px;
  line-height: 28px;
  text-align: center;
  margin-bottom: 30px;
}
.score-results2 {
  font-weight: bold;
  font-size: 48px;
  line-height: 28px;
  text-align: center;
  letter-spacing: -0.5px;
  margin-bottom: 30px;
}



.trueAnswer {
  width: 15%;
  position: absolute;
  top: -5%;
  left: 45%;
}
.trueAnswer2 {
  width: 15%;
  position: absolute;
  top: -5%;
  left: 45%;
}
.results-painters__btnHome2 {
  width: 44%;
  height: 48px;
  border: 1px solid #010101;
  box-sizing: border-box;
  border-radius: 56px;
  margin-right: 10px;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  cursor: pointer;
}
.results-painters__btnHome2:hover {
  background-color: rgb(189, 187, 187);
}
.results-painters__btnNext2 {
  width: 44%;
  height: 48px;
  left: 25px;
  top: 465px;
  border: 1px solid #010101;
  box-sizing: border-box;
  border-radius: 56px;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  background: #FFBCA2;
  border: none;
  cursor: pointer;
}
.results-painters__btnNext2:hover {
  background: #f1926c;
}
.timer-picture2 {
  display: none;
  filter: sepia(5) brightness(4);
  padding-bottom: 5px;
}


@media (min-width: 520px) {
  .container {
    background: url('./assets/images/main-520.png') no-repeat;
    background-position: center;
    background-size: cover;
  }
  .main-page {
    padding: 20px 27px;
  }
  .logo {
    width: 296px;
    margin-top: 328px;
  }
  .main-btns {
    margin-top: 120px;
    margin-bottom: 262px;
  }
  .footer-list {
    font-size: 16px;
  }
  .footer-list img {
    width: 75px;
    height: 30px;
  }
  .settings {
    height: 1024px;
  }
  .settings-h2 {
    padding-left: 5%;
    padding-top: 43px;
  }
  .volume p {
    text-align: start;
    margin-bottom: 55px;
    font-size: 34px;
  }
  .volume {
    padding: 0px 66px;
    padding-bottom: 87px;
  }
  .switch-game {
    text-align: start;
  } 
  .game-on-time h3 {
    text-align: start;
    padding-bottom: 42px;
    font-size: 34px;
  }
  .game-on-time {
    padding-bottom: 80px;
    padding-left: 66px;
  }
  .time-of-question {
    padding-bottom: 170px;
    padding-left: 66px;
  }
  .time-of-question p {
    text-align: start;
    padding-bottom: 41px;
    font-size: 34px;
  }
  .amount_time {
    text-align: start;
  }
  .settings-btns {
    padding-bottom: 130px;
    padding-left: 66px;
    padding-right: 66px;
  }
  .save-btn {
    width: 45%;
    font-size: 24px;
  }
  .default-btn {
    width: 45%;
    font-size: 24px;
    margin-right: 30px;
  }
  .images-painters-svg {
    padding-bottom: 72px;
  }
  .category-painters {
    padding: 43px 30px 15px 40px;
  }
  .category-painters h2 {
    font-size: 28px;
  }
  .category-images h2 {
    font-size: 28px;
  }
  .text-category {
    font-size: 20px;
    line-height: 23px;
  }
  .page-score {
    font-size: 14px;
  }
  .answers-painters {
    gap: 20px;
    margin-bottom: 70px;
  }
  .answers-painters button {
    width: 47%;
    font-size: 18px;
  }
  .progress-time span {
    font-size: 18px;
    line-height: 23px;
  }
  .back-btn {
    width: 18px;
    height: 18px;
  }
  .progress-input {
    margin-top: 1%;
  }
  .question-block {
    padding: 51px 56px 15px 56px;
  }
  .question {
    text-align: start;
  }
  .question-image {
    margin-top: 40px;
  }
  .progress-time {
    margin-bottom: 60px;
  }
  .continue-question, .continue-question2 {
    width: 300px;
    height: 62px;
    font-size: 22px;
  }
  .trueAnswer {
    top: -11%;
  }
  .modal-to-close {
    width: 80%;
    left: 10%;
  }
  .modal-to-close2 {
    width: 80%;
    left: 10%;
  }
  .results-painters, .results-images {
    width: 80%;
    left: 10%;
  }
  .images-block {
    gap: 25px;
  }
  .images-block img {
    height: auto;
  }
  .author-question {
    text-align: start;
    padding-left: 20px;
    
  }
  
}

@media (min-width: 768px) {
  .container {
    background: url('./assets/images/main-768.png') no-repeat;
    background-position: center;
    background-size: cover;
  }
  .main-page {
    padding: 20px 27px;
  }
  .logo {
    width: 440px;
  }
  .main-btns {
    margin-top: 167px;
    margin-bottom: 240px;
    flex-direction: row;
    justify-content: center;
}
  .footer-list {
    font-size: 16px;
  }
  .footer-list img {
    width: 85px;
    height: 30px;
  }
  .input-volume {
    width: 492px;
  }
  .volume-bnts {
    width: 492px;
  }
  .settings-btns {
    text-align: right;
  }
  .default-btn {
    width: 287px;
  }
  .save-btn {
    width: 287px;
  }
  .list-categories div {
    width: 31%;
  }
  .btn-home-painters {
    margin-left: 55%;
    font-size: 18px;
  }
  .btn-home-images {
    margin-left: 55%;
    font-size: 18px;
  }
  .category-painters h2 {
    font-size: 36px;
  }
  .category-images h2 {
    font-size: 36px;
  }
  .category-painters {
    padding-bottom: 30px;
  }
  .category-images {
    padding-bottom: 30px;
  }
  .page-score {
    opacity: 0;
    visibility: hidden;
    font-size: 18px;
  }
  .list-categories div:hover .page-score {
    opacity: 1;
    visibility: visible;
    transition: 0.7s;
  }
  .page-score:hover {
    background-color: burlywood;
  }
  .question-image2 {
    width: 462px;
    height: 330px;
  }
  .modal-question, .modal-question2 {
    bottom: 20%;
  }
  .picture-modal, .picture-modal2 {
    font-weight: 500;
    font-size: 32px;
    line-height: 39px;
  }
  .author-modal, .year-modal, .author-modal2, .year-modal2 {
    font-style: italic;
    font-weight: normal;
    font-size: 22px;
    line-height: 26px;
  }
  .modal-to-close {
    width: 70%;
    left: 15%;
    height: 298px;
  }
  .modal-to-close2 {
    width: 70%;
    left: 15%;
    height: 298px;
  }
  .modal-to-close p {
    font-size: 32px;
    line-height: 36px;
  }
  .modal-to-close2 p {
    font-size: 32px;
    line-height: 36px;
  }
  .cancel {
    font-size: 22px;
    line-height: 22px;
    width: 251px;
    height: 62px;
  }
  .yes {
    font-size: 22px;
    line-height: 22px;
    width: 251px;
    height: 62px;
  }
  .cancel2 {
    font-size: 22px;
    line-height: 22px;
    width: 251px;
    height: 62px;
  }
  .yes2 {
    font-size: 22px;
    line-height: 22px;
    width: 251px;
    height: 62px;
  }
  .results-painters, .results-images {
    width: 60%;
    height: 608px;
    left: 20%;
  }
  .score-results, .score-results2 {
    margin-bottom: 130px;
  }
  .congr, .congr2 {
    font-size: 42px;
    line-height: 50px;
    margin-bottom: 30px;
  }
  .modal-results-cup, .modal-results-cup2 {
    margin-bottom: 40px;
  }
  .results-painters__btnHome, .results-painters__btnHome2 {
    font-size: 22px;
    line-height: 22px;
  }
  .results-painters__btnNext, .results-painters__btnNext2 {
    font-size: 22px;
    line-height: 22px;
  }
  .author-question {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {
  .list-categories div {
    width: 21%;
  }
  .list-categories {
    gap: 40px;
  }
  .category-painters h2 {
    display: none;
  }
  .category-images h2 {
    display: none;
  }
  .btn-home-painters {
    padding-top: 1%;
    font-size: 22px;
    line-height: 18px;
  }
  .btn-home-images {
    padding-top: 1%;
    font-size: 22px;
    line-height: 18px;
  }
  .images-painters-svg {
    padding-bottom: 110px;
  }
  .question-image {
    width: 825px;
    height: 650px;
  }
  .question-block {
    width: 825px;
    margin: 0 auto;
  }
  .modal-question, .modal-question2 {
    width: 70%;
    left: 15%;
  }
  .results-painters__btnHome, .results-painters__btnHome2 {
    width: 250px;
  }
  .results-painters__btnNext, .results-painters__btnNext2 {
    width: 250px;
  }
  .images-block img {
    width: 400px;
  }
  .question-block2 {
    width: 900px;
    margin: 0 auto;
  }
  .author-question {
    padding-left: 40px;
  }
  .progress-time2 {
    padding-left: 40px;
  }
  
}

.show {
  visibility: visible;
  opacity: 1;
}

.gray {
  filter: grayscale(100%);
}