@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Roboto', sans-serif;
}

html, body {
	overflow-x: hidden; /* Prevent horizontal scrolling */
	min-height: 100vh;
}

body {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px;
	color: #f0f0f0;
	background: radial-gradient(circle at 20% 20%, rgba(0, 191, 255, 0.3), transparent 60%),
				radial-gradient(circle at 80% 30%, rgba(255, 0, 127, 0.3), transparent 70%),
				radial-gradient(circle at 50% 80%, rgba(0, 255, 127, 0.3), transparent 60%),
				radial-gradient(circle at 50% 50%, #121212, #1d1d1d);
	background-size: 150% 150%; /* Make the gradient larger to cover full screen on all sizes */
	background-attachment: fixed; /* Keeps background fixed for consistent view on resize */
	background-blend-mode: overlay;
	-webkit-overflow-scrolling: touch; /* Smooth scrolling on Safari */
}

.logo-style {
	font-size: 2.5em;
	font-weight: 700;
	color: #00bfff;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

header, section, footer {
	max-width: 600px;
	width: 100%;
	text-align: center;
	margin: 20px 0;
	opacity: 0;
	animation: fadeIn 1s ease-in forwards;
}

/* Heading style for logo effect */
h1.logo-style {
	font-size: 2.5em;
	font-weight: bold;
	color: #00bfff;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

h2 {
	font-size: 1.5em;
	margin-bottom: 10px;
	color: #00bfff;
}

p {
	font-size: 1em;
	margin-bottom: 15px;
}

#services ul {
	list-style: none;
	padding-left: 0;
	font-size: 1em;
}

#contact a {
	background-color: #00bfff;
	color: #121212;
	padding: 10px 20px;
	border-radius: 5px;
	text-decoration: none;
	font-weight: bold;
	transition: background-color 0.3s ease;
}

#contact a:hover {
	background-color: #007bb5;
}

footer {
	font-size: 0.9em;
	color: #888;
}

/* Fade-in animation for content sections */
@keyframes fadeIn {
	to {
		opacity: 1;
	}
}