body {
  background-image: url("images/a.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat; 
}

html, body {
  cursor: url("images/cursor2.png"), auto;
}
a, button {
  cursor: url("images/cursor.png"), pointer;
}


.top-center-img {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 400px;
  height: auto;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease
}

.top-center-img img {
  display: block;
  width: auto;
  height: auto;
  
}
.top-center-img:hover {
    transform: scale(1.1);
}

.left-middle-container {
  display: flex;
  position: relative;
  justify-content: flex-end;
  align-items: center;
  height: 400px;
  width: auto;

}
.text {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  height: auto;
}
