@import url('https://fonts.googleapis.com/css2?family=Readex+Pro:wght@400;500;700&display=swap');

* {
	box-sizing: border-box;
}
a {
	text-decoration: none;
}

body {
	padding: 0;
	margin: 0;
	background: #202124;
}
#site-header {
	background: url(banner.jpg);
	width: 100%;
	height: 500px;
	background-size:100%;
	display: flex;
	justify-content: center;
}
#logo-img {
	width: 225px;
	height: 225px;
}

#header-items {
	height: 300px;
	width: 75%;
	display: flex;
	justify-content: center;
	justify-content: space-between;
	align-items: center;
	margin: 40px 0 0 0;
}

.texts {
	font-family: "Readex Pro";
}

.header-texts {
	font-size: 36px;
	color: white;
	font-weight: 600;
	transition: all 100ms ease-in-out;
}

.header-texts:hover {
	color: #CAEA07;
	transform: scale(1.1);
}

#current-page {
	color: #CAEA07;
}

#see-more-btn {
	width: 200px;
	height: 50px;
	background: #8F8F8F;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
}

#see-more-text {
	font-size: 20px;
	font-weight: 600;
	color: #292929;
	transition: all 300ms ease-in-out;
}

#see-more-text:hover {
	transform: scale(1.1);
}

