.block {
  width: 48%;
  aspect-ratio: 2;
  border-radius: 20px;
  color: white;
  font-family: Montserrat;
  font-size: 18px;
  outline: 0;
  border: 0px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  transition: 0.3s;
  padding: 10px;
}

.block:hover {
    transform: scale(1.1);
    cursor: pointer;
}


.barracksBlock {
  background: url("../f/img/blocks/barracks.png");
  background-size: cover;
  background-position: center 5%;
}

.libraryBlock {
  background: url("../f/img/blocks/library.webp");
  background-size: cover;
  background-position: center 5%;
}

.academyBlock {
  background: url("../f/img/blocks/academy.jpg");
  background-size: cover;
  background-position: center 60%;
}

.squareBlock {
  background: url("../f/img/blocks/square.jpg");
  background-size: cover;
  background-position: center 85%;
}

.teacherBlock {
  background: url("../f/img/blocks/command.jpg");
  background-size: cover;
  background-position: center;
  width: 97%;
  aspect-ratio: 4;
}

.eventBlock {
  background: url("../f/img/blocks/iss.png");
  background-size: cover;
  background-position: center;
  width: 97%;
  aspect-ratio: 4;
}

.tdprintBlock {
  border: white 2px solid;
  background: url("../f/img/blocks/3dprint.png");
  background-size: 30%;
  background-repeat: no-repeat;
  background-position: center 20%;
}

.tdprintBlock:hover {
  border: rgb(246, 166, 21) 2px solid;
}


.profileBlock {
  border: white 2px solid;
  background: url("../f/img/blocks/profile.png");
  background-size: 30%;
  background-repeat: no-repeat;
  background-position: center 20%;
}

.profileBlock:hover {
  border: rgb(246, 166, 21) 2px solid;
}


.actualQuest {
  display: block;
  text-decoration: none;
  border-radius: 20px;
  background: rgb(246, 166, 21);
  text-align: center;
  padding: 20px;
  color: black;
  transition: 0.3s;
}

.actualQuest :hover {
  transform: scale(1.05);
}
