.component1-wrapper {
  display: contents;
}
 
.component1-container {
  display: flex;
  position: relative;
}
 
.component1-link {
  display: contents;
}
 
.component1-image {
  width: 879px;
  height: 443px;
  box-shadow: 5px 5px 20px 5px #000000;
  object-fit: cover;
  text-decoration: none;
  border-radius: 15px
}

.home-container {
  width: 100%;
  display: flex;
  min-height: 100vh;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  /* background-image: radial-gradient(circle at left bottom, rgb(27, 34, 38) 2.00%,rgb(91, 47, 23) 100.00%); */
}

body {
	background: linear-gradient(-45deg, #1b2226, #5b2f17, #a35507);
	background-size: 400% 400%;
	animation: gradient 30s linear infinite;
	height: 100vh;
}

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