body {
  background-image: url('taust.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  margin: 1;
  padding: 1;
}

.container {
  position: absolute;
  top: 10px;
  right: 30px;
  display: flex;
  gap: 20px;
}

.container a img {
  width: 150px;
  height: auto;
  transition: transform 0.2s;
}

.container a img:hover {
  transform: scale(1.1);
}

@media only screen and (max-width: 600px) {
  .container a img {
  width: 300px;
}
}
