* {
  box-sizing: border-box;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Helvetica Neue",  Arial, sans-serif;
  margin: auto;
}

.bg-image {
  position: absolute;
  bottom: -88%;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 150px;
  width: 100%;
  margin: auto;
  border: #fbab40;
  height: 100vh;
  background-color: #242628;
  background-image: linear-gradient(-45deg, #b7b7b7, #878787, #5e5e5e, #242628);
  background-repeat: no-repeat;
  background-position-x: 0px;
  background-position-y: 0px;
  background-origin: padding-box;
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  z-index: -1000
}

.header h3 {
  text-align: center;
  color: #003d72;
  font-size: 64px;
  font-style: normal;
  font-weight: 600;
  margin: 0;
  line-height: 36px;
}

.header {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px;
  font-style: normal;
}

.header > h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 96px;
  line-height: 150%;
  display: flex;
  align-items: center;
  text-align: center;
  color: #ffffff;
}

@media screen and (max-width: 1024px) {
    .container {
        background-size: contain;
        background-position-y: center;
    }
	
	h1 {
    font-size: 64px !important;
  }
  
  h3 {
    font-size: 48px !important;
  }
}

@media screen and (max-width: 600px) {

.container{
    background-size: contain;
    background-position-y: center;
    }

  body {
    width: 100vw;
  }

  h1 {
    font-size: 48px !important;
  }
  
  h3 {
    font-size: 24px !important;
  }
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
