body {
  background-color: #1e1e1e;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  margin: 0;
  overflow-x: hidden;
}

@font-face {
  font-family: Citizen Slab;
  src: url("public/citizen_slab_personal.otf") format("opentype");
}

html {
  overflow-x: hidden;
}

* {
  font-family: "Source Code Pro", sans-serif;
}

/* Style the navbar */
#navbar {
  overflow: hidden;
  background: var(--Brand-Primary-P01, #1e1e1e);
  display: flex;
  padding: 24px 120px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}

.text-background {
  background-color: rgba(216, 216, 216, 0.75);
  padding: 10px 20px;
  border-radius: 10px;
  margin: 0 10px;
}

/* Navbar links */
#navbar a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px;
  text-decoration: none;
  font-size: 1.5vh;
}

#navbar img {
  height: 4vh;
  width: 4vh;
  padding-left: 5px;
}

.speaker-info {
  color: white;
}

#speakers {
  height: 100%;
  margin: 80px 80px;
  display: flex;
  flex-direction: column; /* changed from flex-flow */
  align-items: center;
  justify-content: center;
  width: 100%; /* full width by default */
  max-width: 63.25vw; /* maximum width on larger screens */
}

/* Media Query for Mobile Devices */
@media (max-width: 900px) {
  #speakers {
    height: auto; /* adjust height for mobile */
    max-width: 100%; /* full width on small screens */
    padding: 20px; /* add some padding */
  }
}

#speakers-header {
  width: 100%;
  text-align: center;
}

#speakers-images {
  width: 100%;
  max-height: 100%;
  text-align: center;
  display: flex;
  gap: 30px; /* Reduced the gap for better visual grouping */
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  margin-bottom: 30px; /* Added some space at the bottom */
  overflow: auto; /* Hide the overflow */
}

.speaker-img {
  width: 15vw; /* Responsive width */
  height: 15vw; /* Responsive height, keeping the aspect ratio */
  max-width: 200px; /* Maximum size */
  max-height: 200px; /* Maximum size */
  object-fit: cover;
  object-position: center center;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
  transition: box-shadow 0.3s ease, transform 0.2s ease; /* Smooth transition for shadow and transform */
}

.speaker-img:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Larger shadow on hover for a 'lifted' effect */
  transform: scale(1.05); /* Slightly scale up the images on hover */
}

x p {
  margin: 0;
  font-size: 18px;
  font-weight: 200;
  color: white;
}

.bar {
  height: 100%;
  width: 0%;
  position: absolute;
  right: 0;
  top: 0;
  background-color: black;
  z-index: -5;
}

.image-container {
  position: relative;
  width: 100%;
  height: 900px;
  text-align: center;
}

.image-container.main-hero {
  background-image: url('public/images/cloud.png');
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 4em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  display: flex;
  max-height: 75vh;
  overflow: hidden;
}
.left-column {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("public/images/trees.png");
  background-size: cover;
  position: relative; /* To position the logo absolutely within this container */
  height: 955px;
}
.buffalo-logo {
  position: absolute;
  max-width: 100%; /* Adjust as needed */
  height: auto; /* Adjust as needed */
  /* Position the logo as required, e.g., top: 20px; left: 20px; */
}
.right-column {
  flex: 1;
  padding-right: 60px;
  padding-left: 60px;
  display: flex;
  flex-direction: column;
  background-color: white;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 64px;
  overflow: scroll;
}
.about-header {
  font-size: 48px;
  font-family: "Citizen Slab", serif;
  font-weight: 400;
  line-height: 57.6px;
}
.about-text {
  color: var(--Brand-Primary-P01, #1e1e1e);
  leading-trim: both;

  text-edge: cap;
  /* Body/B—01/Regular */
  font-family: "Source Code Pro";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%; /* 32.4px */
}

.background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-container {
  color: white;
  max-width: 1000px;
}

.big-sky {
  font-family: "Citizen Slab", serif;
  font-size: 80px; /* Adjust as needed */
  color: black;
  margin-bottom: 5px;
}

.dev-con {
  font-family: "Citizen Slab", serif;
  font-size: 80px; /* Adjust as needed */
  color: white;
  background-color: black;
  padding: 10px;
  margin: 0px;
  border-radius: 10px;
  // only a little wider than content
  width: fit-content;
}

.conference-text {
  color: var(--Brand-Primary-P01, #1e1e1e);
  text-align: center;
  leading-trim: both;

  text-edge: cap;
  /* Headline/H—01 */
  font-family: "Source Code Pro";
  font-size: 64px;
  font-style: normal;
  font-weight: 500;
  line-height: 135%; /* 86.4px */
  margin-top: 10px;
}

h1 {
  font-size: 10vw;
  font-weight: 800;
  left: 20px;
  line-height: 1;
  color: white;
}

h2 {
  font-size: 40px;
  line-height: 1;
  color: white;
}

#hero {
  display: flex;
  width: 1920px;
  max-height: 951px;
  padding: 0px 120px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 55px;
}

#hero-background {
  background-image: url("public/images/cloud.png");
}

#big-logo {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#big-logo img {
  max-width: 100%;
  /* Make the image responsive */
  height: auto;
  /* Maintain the aspect ratio */
}

#big-sky-hero-text {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

button {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background-color: transparent;
  font-size: 18px;
  font-weight: 200;
  width: 100%;
  border-radius: 10px;
  padding: 20px 0;
  cursor: pointer;
  color: white;
}

button:hover {
  border: 1px solid white;
}

a {
  color: white;
}

.scroll-icon {
  height: 50px;
  width: 35px;
  border: 1px solid white;
  border-radius: 100px;
  padding: 5px 14px 20px 14px;
  box-sizing: border-box;
}

.scroll {
  height: 10px;
  width: 5px;
  border-radius: 10px;
  background-color: white;
}
