* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

/* NAVIGATION BAR */

.navbar {
	background-color: #fff;
	display: flex;
	flex-basis: 100%;
	height: 15vh;
	justify-content: space-between;
	padding: 0 10%;
}

.navbar h1 {
	align-self: center;
	font-weight: 700;
	color: #5cb874;
}

.navbar ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.navbar ul li {
	text-decoration: none;
	list-style: none;
	margin-left: 30px;
}

.navbar ul li a {
	color: #000;
}

.navbar ul li a:hover {
	transition: 0.75s;
	color: #5cb874;
}

.navbar ul li .active {
	color: #5cb874;
}

.navbar ul button {
	margin-left: 20px;
	color: #5cb874;
	border-radius: 5px;
	width: 130px;
	height: 45px;
	border: 2px solid #5cb874;
	background-color: #fff;
}

.navbar ul button:hover {
	transition: 0.35s;
	background-color: #5cb874;
	color: #fff;
}

.hero {
	width: 100%;
	height: 65vh;
	background-image: linear-gradient(
			rgba(69, 109, 79, 0.753),
			rgba(48, 77, 55, 0.753)
		),
		url("../img/slide-1.jpg");
	background-position: left top;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: scroll;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0 10%;
}

.hero h1 {
	color: #fff;
	font-size: 52px;
}

.hero p {
	margin-top: 10px;
	margin-bottom: 10px;
	color: #fff;
	text-align: center;
	font-size: large;
}

.hero button {
	color: #fff;
	border-radius: 5px;
	width: 130px;
	height: 45px;
	border: 2px solid #5cb874;
	background-color: #5cb874;
}

.hero button:hover {
	cursor: pointer;
}

.about h1,
p {
	padding: 0 10%;
	text-align: center;
	color: gray;
}

.about h1 {
	color: #444444;
	font-weight: bold;
	font-family: sans-serif;
	margin: 30px 0;
	font-size: 32px;
}

.nebitno {
	margin: -15px auto 15px auto;
	background-color: #444444;
	width: 10%;
	height: 3px;
}
.container {
	padding: 0 0%;
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.container img {
	margin-top: 5%;
	max-width: 80%;
	height: auto;
}
.container h1,
p {
	text-align: left;
	letter-spacing: 0.5px;
	margin-bottom: 13px;
}
.container p::first-letter {
	margin-left: 10px;
}

.containertext h1 {
	font-size: 26px;
}

.container .nigga::first-letter {
	margin: 10px 0 20px 0;
}
