/* Genetal Styling */

html {
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
}

body {
  margin: 0 auto;
  background:#c7af6b;
}

.footer {
	display: flex;
	justify-content: center;
	align-items: flex-end;
  }
  
  .footer-link,
  .footer-link:visited {
	text-decoration: none;
	color: var(--dark);
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 0.1rem;
	transition: all 0.3s ease;
	display: inline-block;
	position: relative;
  }
  
  .footer-link::after {
	content: "";
	display: block;
	width: 100%;
	height: 3px;
	background: rgb(134,211,255);
	background: linear-gradient(90deg, rgba(134,211,255,1) 10%, rgba(229,132,252,1) 100%);
	position: absolute;
	bottom: 10%;
	z-index: -1;
	transition: all 0.3s ease;
	border-radius: 1px;
  }
  
  .footer-link:hover {
	transition: all 0.3s ease;
	color: #F2F2F2;
  }
  
  .footer-link:hover::after {
	height: 17px;
  }