@import url("https://fonts.googleapis.com/css2?family=Protest+Guerrilla&display=swap");

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
body {
	width: 100%;
	min-height: 100vh;
	background: #000;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 30px;
	flex-direction: column;
	font-family: "Protest Guerrilla", sans-serif;
	text-align: center;
	padding: 20px;
}
#logo {
	width: 30vw;
	max-width: 300px;
	min-width: 150px;
}
h1 {
	color: white;
	letter-spacing: 2px;
	font-size: 2.2rem;
}
#name {
	color: red;
	font-size: 2.5rem;
	letter-spacing: 4px;
}
#va {
	color: rgba(0, 255, 0, 0.641);
	font-size: 2.5rem;
	letter-spacing: 3px;
}
#voice {
	width: 250px;
	display: none;
}
#btn {
	width: 60%;
	max-width: 300px;
	background: linear-gradient(to right, rgb(21, 145, 207), rgb(201, 41, 116));
	border: 3px solid white;
	border-radius: 20px;
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	cursor: pointer;
	box-shadow: 2px 2px 10px rgb(21, 145, 207), 2px 2px 10px rgb(201, 41, 116);
	transition: all 0.3s ease;
	font-size: larger;
}
#btn:hover {
	background: linear-gradient(to left, rgb(21, 145, 207), rgb(201, 41, 116));
	box-shadow: 2px 2px 20px rgb(201, 41, 116), 2px 2px 20px rgb(21, 145, 207);
	scale: 1.1;
	color: white;
}

#content {
	text-transform: capitalize;
	font-size: 1rem;
}

@media screen and (max-width: 768px) {
	h1 {
		font-size: 1.8rem;
	}
	#name,
	#va {
		font-size: 2rem;
	}
	#btn {
		width: 80%;
		font-size: 0.9rem;
	}
}

@media screen and (max-width: 480px) {
	h1 {
		font-size: 1.5rem;
	}
	#name,
	#va {
		font-size: 1.5rem;
	}
	#btn {
		width: 90%;
		font-size: 0.8rem;
		padding: 8px;
	}
	#btn img {
		width: 20px;
	}
	#logo {
		width: 50vw;
		min-width: 100px;
	}
	#voice {
		width: 180px;
	}
}
