
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');

body {
    text-align: center;
	font-family: 'Poppins', sans-serif;
	background-image: url('https://images.pexels.com/photos/1103970/pexels-photo-1103970.jpeg?crop=entropy&cs=srgb&dl=abstract-art-artistic-background-1103970.jpg&fit=crop&fm=jpg&h=768&w=1366');
}
header {
	display: flex;
	width: 90%;
	height: 10vh;
	margin: auto;
    align-items: center;
}

.logo-container,
.nav-links,
.cart {
	display: flex;
}

.logo-container {
	flex: 1;
}
.logo {
	font-weight: 400;
	margin: 5px;
}
nav {
	flex: 2;
}
.nav-links {
	justify-content: space-around;
	list-style: none;
}
.nav-link {
	color: #5f5f79;
	font-size: 18px;
	text-decoration: none;
}

.cart {
	flex: 1;
	justify-content: flex-end;
}

.btn-primary {
    margin-top: 100px;

}

.content {
    color: rgb(19, 99, 102);
}
.answer {
    color: black;
}
.voice-rec {
	display: inline-block;
}
.btn-danger {
	position: unset;
}
@media screen and (max-width: 600px) {

	body {
		background-image: url('https://images.pexels.com/photos/1103970/pexels-photo-1103970.jpeg?crop=entropy&cs=srgb&dl=abstract-art-artistic-background-1103970.jpg&fit=crop&fm=jpg&h=1366&w=768');
	}
	nav {
		margin-top: 30px;
	}
	.logo-container {
		margin-top: 20px;
	}
  }