/* global */
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background-color: inherit;
  font-family: "Roboto", "Poppins", sans-serif;
  font-size: inherit;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", "Poppins", sans-serif;
  font-size: inherit;
  color: #ffffff;
  margin: 0;
}

.light {
  --clr-bg: #ffffff;
  --clr-fg: #000000;
  --clr-bg-alt: #f5f5f5;
  --clr-fg-alt: #000000;
  --clr-primary: #000000;
  --shadow: rgba(43, 43, 43, 0.26) 0px 7px 20px 0px;
}

.dark {
  --clr-bg: #000000;
  --clr-fg: #ffffff;
  --clr-bg-alt: #1a1a1a;
  --clr-fg-alt: #ffffff;
  --clr-primary: #ffffff;
  --shadow: rgba(0, 0, 0, 0.26) 0px 7px 20px 0px,
    rgba(44, 43, 43, 0.06) 0px 0px 0px 1px;
}

::-moz-selection {
  background-color: var(--clr-primary);
  color: var(--clr-bg);
}

::selection {
  background-color: var(--clr-primary);
  color: var(--clr-bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  line-height: normal;
  color: inherit;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  font-size: 1rem;
  line-height: 1.5;
  color: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  list-style-type: none;
  text-align: center;
  align-items: center;
}

/*button and links*/
button {
  background-color: #e12a2a;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

/* .button:hover {
    background-color: #45a049;
  } */

.links {
  color: var(--clr-primary);
  position: relative;
  font-family: inherit;
}

.links:hover {
  color: blueviolet;
}

/* .links::before {
    content: "";
    display: inline;
    position: absolute;
    width: 0%;
    height: 0.2em;
    bottom: 0;
    left: 0;
    background-color: var(--clr-primary);
    text-transform: capitalize;
    transition: width 0.4s ease-in-out;
  }
  
  .links:hover::before,
  .links:focus::before {
    width: 100%;
  } */

.link_nav:hover {
  font-size: 1.2em;
}

.link_nav {
  transition: 0.2s all;
  color: var(--clr-fg);
  text-transform: capitalize;
  font-weight: 500;
  margin: 0 0.4em;
  align-items: center;
  font-weight: bold;
}

.header {
  height: 6em;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
}

main {
  max-width: 1100px;
  width: 100%;
  margin-top: 6em;
  margin-left: auto;
  margin-right: auto;
  font-family: "Poppins", sans-serif;
}

.ul_center {
  display: flex; /* Display the list items in a row */
  justify-content: center; /* Add space between the list items */
  align-items: center;
  margin: 1em;
  padding: 0; /* Remove the default padding */
}

.navli {
  margin-right: 3em;
  display: block;
}

.intro {
  height: 6em;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
}

.imagine {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2em;
  font-family: "Poppins", sans-serif;
  font-weight: 900;
}

.ip {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2em;
  padding: 0px 170px;
  font-family: "Poppins", sans-serif;
}

p {
  font-family: "Poppins", sans-serif;
}

.main-container {
  width: 100%;
  background: linear-gradient(
    151deg,
    rgba(0, 0, 0, 1) 50%,
    rgba(253, 29, 29, 1) 100%
  );
}

.p4 {
  padding-bottom: 20px;
}

/* Solid border */
hr.solid {
  border-top: 3px solid transparent;
  background-image: linear-gradient(
    151deg,
    rgba(0, 0, 0, 1) 50%,
    rgba(253, 29, 29, 1) 100%
  );
}

.team-img {
  display: flex;
  align-items: center;
  border-radius: 50%;
  margin-right: 10px;
  width: 250px;
  height: 250px;
}

.member {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0px auto;
  margin-top: 2em;
  width: 90%;

  font-family: "Poppins", sans-serif;
}

.member-desc {
  display: flex;
  flex-direction: column;
  font-family: "Poppins", sans-serif;
  margin-left: 10px;
}

.team {
  padding-bottom: 20px;
}

.logo img {
  height: 70px;
  width: 70px;
}

.logo {
  flex: 7%;
}

nav {
  flex: 93%;
}
