:root{
  --color-primary: #FFCD35;
  --color-secondary: #FFC002;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-border: #F7AF1A;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--color-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
}

.logo {
  width: calc(369/1080*100vh);
  height: calc(120/1080*100vh);
  margin-top: calc(35/1080*100vh);
  object-fit: contain;
}

.intro-section {
  padding: calc(20/1080*100vh);
  margin: calc(50/1080*100vh) 0;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background-color: var(--color-secondary);
}

.intro {
  font-size: 18px;
  color: var(--color-black);
  text-align: justify;
  font-weight: 400;
  margin: 0;
}

.hexagon {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 257px;
  height: 165px;
}

.top-left {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(223/1920*100vw);
  object-fit: contain;
  max-width: 223px;
  min-width: 150px;
}

.top-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 89px;
  object-fit: contain;
}

.bottom-left {
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(427/1920*100vw);
  max-width: 427px;
  min-width: 200px;
}

.team {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 2;
  align-items: center;
  flex: 1;
  width: 100%;
}

.team > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  gap: 10px;
  width: 100%;
  text-align: center;
}

.team > div > svg {
  width: calc(130/1080*100vh);
  height: calc(130/1080*100vh);
}

.team .member-name {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.team .member-role {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}

.team .member-experience {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}

.fotter-container {
  height: calc(60/1080*100vh);
  min-height: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 192, 2, 0.6);
  z-index: 1;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80%;
  padding-bottom: 10px;
}
