* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.wrapper {
  width: 100%;
  height: 100vh;
  background-color: #daa520;
}
.wrapper header {
  width: 100%;
  height: 50px;
  background-color: rgb(60, 54, 54);
  text-align: center;
  color: red;
  /* text-shadow: 4px 2px 7px plum; */
  /* font-size: 37px; */
  display: flex;
  justify-content: space-between;
}
.sarlavha {
  background: linear-gradient(
    30deg,
    black,
    #536ec8,
    #9cd7d4,
    red,
    #38ea61,
    rgb(88, 210, 210),
    red
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.raqam {
  color: aliceblue;
  text-shadow: 4px 2px 7px wheat;
}
.bola1 {
  width: 100%;
  height: 300px;
  /* border: 1px dotted darkcyan; */
  display: flex;
  align-items: center;
  justify-content: center;
}
.nevara {
  width: 97%;
  height: 90%;
  background-color: rgb(60, 54, 54);
  border-radius: 15px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.block1 {
  /* border: 2px solid rebeccapurple; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 40px;
}
.block1 img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
.bolim {
  width: 200px;
  height: 30px;
  background-color: #38ea61;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  color: aliceblue;
  font-size: 20px;
  transition: 0.8s;
}
.bolim:hover {
  transform: translateX(-30px);
  transform: translateY(15px);
  box-shadow: 0px 1px 5px 3px rgb(120, 117, 117);
}
menu {
  font-size: 30px;
  font-weight: bold;
  color: cornsilk;
  width: 100%;
  text-align: center;
}

/* Rasmlarni kvadrat va radiusli qilish */

/* Responsive qism */
@media (max-width: 600px) {
  .wrapper header {
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 10px 0;
  }

  .wrapper header h1.sarlavha {
    font-size: 22px;
    margin-bottom: 5px;
    text-align: center;
  }

  .wrapper header h2.raqam {
    font-size: 16px;
    color: #eee;
    text-shadow: 2px 1px 4px wheat;
  }

  .nevara {
    grid-template-columns: 1fr !important; /* 1 ustunga tushadi */
    grid-auto-rows: auto;
    gap: 15px;
    height: auto !important;
    padding: 0 10px;
  }

  .block1 img {
    width: 120px !important;
    height: 120px !important;
  }

  .bolim {
    font-size: 18px !important;
    width: auto !important;
    padding: 8px 20px !important;
    text-align: center;
  }

  menu {
    font-size: 26px !important;
    margin-bottom: 10px;
  }
}
