* {
  margin: 0;
  padding: 0;
}
body {
  background-image: url(images/bg.jpg);
  background-attachment: fixed;
  background-size: cover;
  font-family: "minecraft-1-1";
  box-sizing: border-box;
}
@font-face {
  font-family: "minecraft-1-1";
  src: url("fonts/minecraft-1-1.woff2");
}
h1 {
  font-family: "minecraft-1-1";
  color: white;
  text-align: center;
  margin: 0 auto 15px;
}
p {
  padding: 5px;
  font-size: 12px;
}
p, h3 {
  animation-duration: 1s;
  animation-name: slidein;
}
@keyframes slidein {
  from {
    margin-left: 50%;
    width: 150%;
  }
  to {
    margin-left: 0%;
    width: 100%;
  }
}
img {
  width: auto;
}
input {
  margin: 10px;
  border-radius: 10px;
}
.text, .btns{
  text-align:center;
}
.img img {
  max-width: 125px;
  position: absolute;
}
.zoomed {
  top: 50%;
  left: 47.5%;
  transform: scale(19);
  transition: all 0.2s;
}
.text input:hover {
	background-color: rgba(0, 0, 0, 0.5);
	cursor: pointer;
	color: white;
}
.container {
  background-color: rgba(0, 0, 0, 0.5);
  margin: 20px auto;
  padding: 50px;
  max-width: 900px;
  box-shadow: 0 0 20px black;
  border-radius: 30px;
}
.text input {
	  width: 64%;
  	height: 20px;
  	padding: 10px;
  	font-family: "minecraft-1-1";
}
.btns input {
  padding: 10px;
  border: none;
  background-color: lightslategray;
  font-family: "minecraft-1-1";
}
.btnAudio {
  padding: 10px;
  border: none;
  background-color: lightslategray;
  font-family: "minecraft-1-1";
  margin: 10px;
  border-radius: 10px;
}
.btns input:hover{
	background-color: #640000;
	cursor: pointer;
  transform: scale(1.1);
  transition: transform 0.3s ease-in-out;
}
.btns input:active {
  transform: scale(1);
  transition: transform 0.1s ease-in-out;
}
.notes button {
  padding: 3px;
  font-size: 11px;
  margin: 3px;
  border-radius: 5px;
  border: none;
  display: block;
  background-color: lightslategray;
  font-family: "minecraft-1-1";
  flex-direction: column;
  max-width: 130px;
  text-align: left;
}
.notes button:hover {
  background-color: rgba(0, 0, 0, 1);
  background: #640000;
	cursor: pointer;
  transform: scale(1.1);
  transition: transform 0.3s ease-in-out;
}
.notes button:active {
  transform: scale(1);
  transition: transform 0.1s ease-in-out;
}
.ListNote {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: minmax(100px, auto);
  gap: 10px;
}
.notes {
  margin: 10px;
  border-radius: 5px;
  padding: 10px;
  min-width: 100px;
  min-height: 170px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  word-break: break-all;
}
.notes:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease-in-out;
}
.timestamp {
  display: block;
  color: rgb(126, 81, 81);
  font-size: 11px;
  margin-top: 5px;
}
footer {
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  margin: 20px auto;
  padding: 50px;
  max-width: 900px;
  box-shadow: 0 0 20px black;
  border-radius: 30px;
}
.creates {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
li {
  list-style-type: none;
}
.icons a {
  color: lightslategray;
}
.Margo, .Nastya, .Lera {
  padding: 0 15px;
}
.response {
    width: 64%;
  	height: 20px;
  	padding: 10px;
    margin: 10px 0;
  	font-family: "minecraft-1-1";
}
.send {
  padding: 10px;
  height: 44px;
  border: none;
  background-color: lightslategray;
  font-family: "minecraft-1-1";
  border-radius: 10px;
}
.send:hover {
  background-color: rgba(0, 0, 0, 1);
  background: #640000;
	cursor: pointer;
  transform: scale(1.1);
  transition: transform 0.3s ease-in-out;
}
.send:active {
  transform: scale(1);
  transition: transform 0.1s ease-in-out;
}
.response:hover {
	background-color: rgba(0, 0, 0, 0.5);
	cursor: pointer;
	color: white;
}
@media (max-width: 920px) {
  .container {
    padding: 50px 20px;
  }
}
@media (max-width: 800px) {
  .ListNote {
    grid-template-columns: repeat(3, 1fr);
  }
  .img img {
    left: 50%;
    transform: translate(-50%, -50%);
  }
  h1 {
    margin: 80px 0 0;
  }
  .creates {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
@media (max-width: 640px) {
  .ListNote {
    grid-template-columns: repeat(2, 1fr);
  }
  .creates {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 390px) {
  .ListNote {
    display: block;
  }
  .notes {
    margin: 20px 0;
  }
  .text input {
  box-sizing: border-box;
  margin: 10px auto;
  width: 100%;
  height: auto;
  }
}
