h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

p:last-child {
  margin-bottom: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: currentColor;
  text-decoration: none;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.loader {
  visibility: hidden;
  transform: translateZ(1px);
}
.loader:after {
  content: "$";
  display: inline-block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-size: 32px;
  font-weight: bold;
  background: #ffd700;
  color: #daa520;
  border: 4px double;
  box-sizing: border-box;
  box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.1);
  animation: coin-flip 4s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
@keyframes coin-flip {
  0%,
  100% {
    animation-timing-function: cubic-bezier(0.5, 0, 1, 0.5);
  }
  0% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(1800deg);
    animation-timing-function: cubic-bezier(0, 0.5, 0.5, 1);
  }
  100% {
    transform: rotateY(3600deg);
  }
}
.is-hidden {
  visibility: visible;
}

body {
  margin-left: auto;
  margin-right: auto;
  background-color: bisque;
}

.title1 {
  background-color: #928be1;
  border-radius: 20px;
  color: rgb(100, 87, 11);
  text-align: center;
}

.wraper {
  background-color: #7675d7;

  width: auto;
  height: auto;
}

.item {
  color: #082081;
  font-size: 32px;
  font-style: normal;
}

.item1 {
  color: #81080e;
}

.imago {
  border-radius: 10px;

  display: block;
  margin-bottom: 10px;
}

.student-card {
  display: flex;
  text-align: center;
  flex-direction: column;
  padding: 5px;
  background-color: aquamarine;
  margin: 10px 50px;
  border-radius: 10px;
  border: 1px solid;
  border-color: #4f4616;
}

.prod-card {
  display: flex;
  text-align: center;
  flex-direction: column;
  padding: 5px;
  background-color: rgb(55, 77, 173);
  margin: 10px 50px;
  border-radius: 10px;
  border: 1px solid;
  border-color: #4f4616;
}
.title3 {
  color: rgb(20, 206, 20);
  font-size: 24px;
}
