* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--nav-height: 80px;
}

html {
	background: white;
}

.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	height: 80px;
	background: white;
	z-index: 1000;
	box-shadow: 0 2px 4px 0 rgba(0,0,0,.2);
	font-family: "Gill Sans", sans-serif, monospace;
	--font-style: bold;
}

.nav-container {
	max-width: 1200px;
	height: 100%;
	margin: 0 auto;
	padding: 0 30px;

	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo {
	height: 100%;
	display: flex;
	align-items: center;
}

.logo img {
	height: 80%;
	width: auto;
	display: block;
}

.nav-menu {
	list-style: none;
	display: flex;
	gap: 30px;
}

.nav-menu a {
	text-decoration: none;
	color: #00474c;
	font-size: 1.1rem;
	text-transform: uppercase;
	position: relative;
	padding: auto;
}

.nav-menu a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 0%;
	height: 2px;
	background: rgb(28, 121, 184);
	transition: width 0.3s ease;
}

.nav-menu a:hover::after {
	width: 100%;
}

/* mobile toggle */
.menu-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
}

.menu-toggle span {
	height: 3px;
	width: 25px;
	background: black;
	margin: 4px 0;
	display: block;
}

/* mobile styles */
@media (max-width: 768px) {
	.menu-toggle {
		display: flex;
	}

	.nav-menu {
		position: absolute;
		top: 60px;
		right: 0;
		background: white;
		flex-direction: column;
		width: 100%;
		align-items: center;

		transform: translateY(-200%);
		transition: transform 0.3s ease;
	}

	.nav-menu.active {
		transform: translateY(0);
	}

	.nav-menu li {
		margin: 20px 0;
	}
}

.spacebetween {
	margin-top: 50px;
}

.major {
	width: 100%;
	background-color: #f7f6f5;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	font-family: "Gill Sans", sans-serif, monospace;
	--margin-top: 50px;
}

.majortext {
	margin-left: 150px;
	padding-top: 120px;
	width: 40%;
}

.minortext {
	--font-size: 13px;
	margin-left: 150px;
	padding-top: 50px;
	width: 40%;
}

.major1 {
	background-color: white;
}

.major h1 {
	font-variant: small-caps;
	font-size: 50px;
	color: #00474c;
}

.major h2 {
	padding-top: 20px;
	font-weight: normal;
	font-size: 26px;
	color: #172021;
}

.major p {
	color: #172021;
	padding-top: 5px;
	padding-bottom: 15px;
	font-size: 18px;
	width: 80%;
}

.majorimg {
	--margin-right: 150px;
}

.majorimg img {
	max-height: 445px;
	float: right;
	width: auto;
	display: block;
	-webkit-mask-image: linear-gradient(to right, white 0%, transparent 100%);
	mask-image: linear-gradient(
	to right, 
	transparent 0%,
	white 1.5%,
	white 77%, 
	transparent 99%);
}

.major button {
	background-color: #51bab7;
	border: none;
	color: white;
	padding: 12px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 35px 0px;
	transition-duration: 0.4s;
	font-weight: bold;
	border-radius: 4px;
	cursor: pointer;
}

.major button:hover {
	background-color: #00474c;
	color: white;
}

.major::after {
	content: "";
	display: block;
	clear: both;
}

.major a {
    color: white;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
}