* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
}

nav {
  width: 100%;
  background-color: #6a4bb9;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.navbar {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
}

.navbar li {
  margin: 0 15px;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  padding: 14px 20px;
  display: block;
}

.main-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 70px; /* Adjust to account for fixed navbar */
  padding: 20px;
}

.image {
  width: 600px; /* Adjust the width of the image */
  height: 500px; /* Adjust the height of the image */
  object-fit: cover; /* Adjust the object fit of the image */
  margin-right: 20px; /* Adjust the space between image and text */
  margin-left: 50px;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  margin-bottom: 20px;
}

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

.rectangle {
  width: 10px; /* Adjust the width of the vertical rectangle */
  height: 100%;
  background-color: #6a4bb9; /* Adjust the color of the vertical rectangle */
  margin-right: 10px; /* Adjust the space between rectangle and H1 */
}

h1 {
  font-size: 48px; /* Adjust the font size of H1 */
  margin: 0;
}

h2 {
  font-size: 25px; /* Adjust the font size of H2 */
  margin: 5px 0 10px 0; /* Adjust the margin around H2 */
}

p {
  font-size: 20px; /* Adjust the font size of the paragraph */
  margin: 0;
}

.signup-button,
.login-button {
  margin-top: 20px;
  padding: 10px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease,
    color 0.3s ease;
  margin-right: 20px; /* Adjust margin as needed */
}

.signup-button {
  background-color: #6a4bb9;
  color: #fff;
}

.login-button {
  border: 2px solid #6a4bb9;
  color: #000;
}

.signup-button:hover,
.login-button:hover {
  background-color: #cec3fe;
  border-color: #cec3fe;
}

.team-section {
  margin-top: 100px; /* Adjust the margin to account for the fixed navbar */
  text-align: center;
  padding: 40px 20px;
}

.team-section h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 20px;
}

.column {
  flex: 1;
  max-width: 300px;
  margin: 10px;
}

.card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.img-container {
  margin-bottom: 15px;
}

.img-container img {
  border-radius: 50%;
  width: 200px;
  height: 200px;
}

.icons a {
  color: #6a4bb9;
  margin: 0 5px;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s ease;
}

.icons a:hover {
  color: #333;
}

@media screen and (max-width: 600px) {
  .navbar {
    flex-direction: column;
    align-items: center;
  }

  .main-content {
    flex-direction: column;
  }

  .image {
    width: 100%;
    height: auto;
    margin-left: 0;
  }

  .text {
    margin-bottom: 20px;
  }

  .signup-button,
  .login-button {
    width: 100%;
    margin: 10px 0;
  }

  .team-section .row {
    flex-direction: column;
  }
}

.about-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
}

.about-section .image {
  max-width: 50%;
  height: auto;
  margin-left: 10px;
  order: 2; /* Move image to the right */
}

.about-section .content {
  max-width: 50%;
  font-family: "Poppins", sans-serif;
  order: 1; /* Keep text on the left */
}

.about-section p {
  font-size: 1.1em;
  line-height: 1.6;
  color: #4a4a4a;
  margin-bottom: 15px;
  padding-left: 50px;
}

.about-section h2 {
  font-size: 2em;
  color: #6a4bb9;
  margin-top: 30px;
  margin-bottom: 10px;
  padding-left: 50px;
}

/************ LOGIN ****************/
