* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #000;
  color: #000;
}

.header {
  width: 100%;
  height: 100vh;
  background-image :linear-gradient(rgba(121, 119, 255, 0.3),rgba(26, 2, 70, 0.7)),url(images/background.jpeg);
  background-size: cover;
  background-position: center;
  padding: 10px 30px;
  position:relative; 
  text-align: center;
}

@keyframes rotate {
	to {
		--angle: 360deg;
	}
}

@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.header-content {
 position: absolute; 
top:50%;
left:50%;
transform: translate(-50%,-50%);
text-align: center;
align-items: center;
justify-content: center;
align-content: center;
margin-top: 0px;
width: 60%;
height: 80%;
background-color: white;
border-radius: 10px;
border: 7px solid;
--angle: 0deg;
	border-image: conic-gradient(from var(--angle), red, yellow, lime, aqua, blue, magenta, red) 1;
	animation: 10s rotate linear infinite;
}

.header-content h1 {
  font-size:30px;
  font-weight: 600;
}

.header-content h3 {
  font-size:18px;
  margin-bottom: 20px;
}

.header-content hp {
  font-size:14px;
}

.logo {
  width:170px;
  margin-bottom: 20px;
}

.copyright-text {
font-size: 14px;
padding: 10px;
margin-top: 20px;
margin-bottom: 10px;
background-color: #303030;
text-align: right;
}



