/* Reset margins */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.landing-body {
  height: 100vh;
  width: 100%;
  background: url('images/background.gif') no-repeat center center fixed;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Container to center logo */
.landing-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

/* Logo Style */
.landing-logo {
  width: 300px;
  max-width: 75%;
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
}

.landing-logo:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .landing-logo {
    width: 200px;
  }
}
