body {
	background: #0d0e19;
	font-family: Assistant, Roboto, sans-serif;
	font-size: 1.1rem;
}

a:hover {
	color: inherit;
}

.my-btn {
	background: #e7cd8b;
	color: #0d0e19;
	font-weight: bolder;
	border: none;
	padding: 6px 16px;
	font-family: Assistant;
	font-size: 16px;
	margin-left: 16px;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
	border: 2px solid transparent;
	border-radius: 1.5rem;
}

.my-btn:hover {
	color: #e7cd8b;
	background: transparent;
	border: 2px solid #e7cd8b;
}

.my-logo {
	height: 80px;
	margin: 8px;
}

.my-input:focus-within {
	box-shadow: 0 0 4px 1px #e7cd8b;
}

.my-input:focus-within span {
	color: #e7cd8b;
}

@media (max-width: 768px) {
	body {
		margin: 10px;
	}
}

@media (max-width: 410px) {
	.my-logo {
		height: auto;
	}

	.my-btn {
		margin: auto;
		margin-top: 10px;
		font-size: 12px;
	}
}
