
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px; /* Set root font size */
  }

body {
    font-family: 'raleway', sans-serif;
    font-size: 1rem; /* Default text size (16px) */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color:#ddd;
    background: linear-gradient(-45deg, #720d32, #5f0d72, #720d2f, #240756, #50123c, #720d52, #720d26, #722d0d );
	background-size: 400% 400%;
	animation: gradient 80s ease infinite;
	height: 100vh;w
}

.container {
    text-align: center;
}

 a:hover {
    color:white;
}

header {
    margin-bottom: 20px;
}

.logo {
    width: 40%; /* Adjust as needed */
}

.tagline h1 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #ddd;
}

.contact p {
    margin-top: 20px;
    font-size: 1.2rem;
    color: #888;
}

.contact a {
    color: #999;
    text-decoration: none;
}

.contact a:hover {
    color: #fff;
}

footer {
    margin-top: 40px;
    font-size: 0.9rem;
    color: #999;
}

body {
	
}

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


