@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
/* Reset CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: "Inter", sans-serif;
  background: #000000;
  color: #ffffff;
  overflow-x: hidden;
}

/* Header Styling */
header {
  max-width: 100vw;
  background-color: #282a36;
  color: #ffffff;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 24px;
  padding-right: 24px;
  text-align: center;
  overflow-x: hidden;
}

.header-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.header-left {
  text-align: center;
  display: flex;
  align-items: center;
}

.header-left h1 {
  margin: 0;
  text-align: center;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-weight: bold;
}

.header-divider {
  font-size: 24px;
  color: #ffffff;
}

.header-right {
  display: flex;
  align-items: center;
}

.header-right img {
  height: 42px;
  margin: 0;
  object-fit: cover;
}

#ono {
  padding-right: 10px;
}

#ieee {
  padding-left: 10px;
}

/* Footer Styling */
footer {
  background-color: #282a36;
  color: #fff;
  text-align: center;
  padding: 20px;
  bottom: 0;
  width: 100%;
  font-size: small;
}

/* Main Content Styling */
.container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.mt-4 {
  margin-top: 1.5rem;
}

/* Heroes Section Styling */
.heroes {
  padding: 20px;
  padding-bottom: 8px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.heroes-subheading {
  font-size: 24px;
  color: #e87722;
}

.heroes-description {
  font-size: 18px;
  line-height: 1.6;
  color: #ffffff;
}

.resources {
  max-width: 90vw;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  padding: 20px;
  border-radius: 8px;
  background-color: #282a36;
  color: #ffffff;
  font-weight: 500;
  /* text-align: center; */
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 150px;
}

.resources h2 {
  font-size: 24px;
  color: #ffffff;
}

.resources ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.resources li {
  margin-bottom: 10px;
  color: wheat;
}
a{
  color: cornflowerblue;
  text-decoration: none;
  font-weight: 500;
}
.poster-image {
  width: 420px;
  max-width: 90vw;
  height: auto;
  aspect-ratio: 905 / 1280;
  object-position: center;
  border-radius: 8px;
  margin-top: 30px;
  justify-self: center;
}
