* {
  padding: 0;
  margin: 0;
}

html {
  min-width: 300px;
}

.container {
  align-items: center;
  background-image: linear-gradient(blue, black);
  color: #fff;
  display: flex;
  font-size: clamp(1.2rem, 2.2rem, 3.8rem);
  height: 100vh;
  justify-content: center;
}

.main-header {
  animation: fadeIn 4s 1;
  text-shadow: 0 0 7px #222;
  transition: all 1.8s ease-in-out;
}

.main-header:hover {
  cursor: pointer;
  transform: scale(1.1);
}

.section-one {
  height: 20vh;
}

.main-footer {
  position: fixed;
  bottom: 0;
  width: 100%;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(241, 6, 45);
  padding: 20px;
  color: #fff;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media only screen and (max-width: 680px) {
  html {
    font-size: 79%;
  }
}

@media only screen and (orientation: landscape) {
    html {
        height: auto;
    }
}
