@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap");
* {
  	margin: 0;
  	padding: 0;
  	box-sizing: border-box;
  	font-family: "Open Sans", sans-serif;
}
body {
  	height: 100vh;
  	width: 100%;
  	background: linear-gradient(to bottom, #175d69 23%, #330c43 95%);
  	background-attachment: fixed;
}
.code {
	font-family: monospace;
}
.header {
  	position: fixed;
  	top: 0;
  	left: 0;
  	width: 100%;
	background-color: #999999db;
    z-index: 1000;
}
.navbar {
  	display: flex;
  	align-items: center;
  	justify-content: space-between;
  	max-width: 1200px;
  	margin: 0 auto;
  	padding: 20px 15px;
}
.navbar .logo a {
  	font-size: 1.8rem;
  	text-decoration: none;
  	color: #fff;
}
.navbar .links {
  	display: flex;
  	align-items: center;
  	list-style: none;
  	gap: 35px;
}
.navbar .links a {
  	font-weight: 500;
  	text-decoration: none;
  	color: #fff;
  	padding: 10px 0;
  	transition: 0.2s ease;
}
.navbar .links a:hover {
  	color: #47b2e4;
}
.navbar .buttons a {
  	text-decoration: none;
  	color: #fff;
  	font-size: 1rem;
  	padding: 15px 0;
  	transition: 0.2s ease;
}
.navbar .buttons a:not(:last-child) {
  	margin-right: 30px;
}
.navbar .buttons .signin:hover {
  	color: #47b2e4;
}
.navbar .buttons .signup {
  	border: 1px solid #fff;
  	padding: 10px 20px;
  	border-radius: 0.375rem;
  	text-align: center;
  	transition: 0.2s ease;
}
.navbar .buttons .signup:hover {
  	background-color: #47b2e4;
  	color: #fff;
}
.hero-section {
  	display: flex;
    justify-content: space-evenly;
    align-items: stretch;
    height: 95vh;
    padding: 0 15px;
    max-width: 1200px;
    margin: 0 auto;
    top: 140px;
    position: relative;
}
.hero-section .hero {
  	max-width: 50%;
  	color: #fff;
}
.hero h1 {
  	font-size: 2.5rem;
  	margin-bottom: 20px;
}
.hero h2 {
  	font-size: 1.8rem;
  	margin-bottom: 12px;
}
.hero p {
  	font-size: 1.2rem;
  	margin-bottom: 20px;
  	color: #c9c7c7;
}
.hero-section .img img {
  	width: 517px;
}
.hero-section .buttons {
  	margin-top: 40px;
}
.hero-section .buttons a {
  	text-decoration: none;
  	color: #fff;
  	padding: 12px 24px;
  	border-radius: 0.375rem;
  	font-weight: 600;
  	transition: 0.2s ease;
  	display: inline-block;
}
.hero-section .buttons a:not(:last-child) {
  	margin-right: 15px;
}
.buttons .join {
  	background-color: #47b2e4;
}
.hero-section .buttons .learn {
  	border: 1px solid #fff;
  	border-radius: 0.375rem;
}
.hero-section .buttons a:hover {
  	background-color: #47b2e4;
}

.hero-section ul.students {
	list-style-type: none;
}

.hero-section .students a {
  	text-decoration: none;
  	color: #fff;
  	padding: 6px 12px;
  	border-radius: 0.375rem;
  	font-weight: 600;
  	transition: 0.2s ease;
  	display: inline-block;
}
.hero-section .students a:hover {
  	background-color: #47b2e4;
}
/* Hamburger menu styles */
#menu-toggle {
  	display: none;
}
#hamburger-btn {
  	font-size: 1.8rem;
  	color: #fff;
  	cursor: pointer;
  	display: none;
  	order: 1;
}
@media screen and (max-width: 1023px) {
  .navbar .logo a {
    font-size: 1.5rem;
  }
  .links {
    position: fixed;
    left: -100%;
    top: 75px;
    width: 100%;
    height: 100vh;
    padding-top: 50px;
    background: #175d69;
    flex-direction: column;
    transition: 0.3s ease;
  }
  .navbar #menu-toggle:checked ~ .links {
    left: 0;
  }
  .navbar #hamburger-btn {
    display: block;
  }
  .header .buttons {
    display: none;
  }
  .hero-section .hero {
    max-width: 100%;
    text-align: center;
  }
  .hero-section img {
    display: none;
  }
}