@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
:root {
  --primary: #fcd800;
  --primary-light: #ffe963;
  --primary-shade: #d6b800;
  --secondary: #fc4600;
  --secondary-light: #ff6f37;
  --secondary-shade: #c63902;
  --black: #343434;
  --black-light: #5e5e5e;
  --black-shade: #000000;
  --white: #f5f5f5;
  --white-light: #ffffff;
  --white-shade: #dddddd;
}

@media (prefers-color-scheme: light) {
  :root {
    --text-color: var(--black);
    --bg-color: var(--white);
    --tile-color: var(--white-light);
  }
}
@media (prefers-color-scheme: dark) {
  :root {
    --text-color: var(--white);
    --bg-color: var(--black);
    --tile-color: var(--black-light);
  }
}
body {
  font-family: "Roboto", sans-serif;
}

.article {
  width: 500px;
}
.article h1 span,
.article h4 span,
.article p span {
  color: var(--primary);
}

@media only screen and (max-width: 600px) {
  .article {
    width: 100%;
  }
}
body {
  padding: 0;
  margin: 0;
  background-color: var(--bg-color);
  color: var(--text-color);
}

a.ext {
  color: var(--text-color);
}

header {
  margin-bottom: 2cm;
}
header svg {
  height: 120px;
}
header svg #text {
  fill: var(--text-color) !important;
}

.app {
  margin: 0px auto;
  padding: 20px;
  max-width: 1400px;
}

.ELECTRONICA {
  max-width: 100%;
}

.caret {
  position: absolute;
  right: 0;
  top: 0;
  width: 40%;
  max-width: 400px;
}

@media only screen and (max-width: 600px) {
  .app {
    margin: 0;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
  }
  .ELECTRONICA {
    margin-bottom: 20px;
    margin-left: -20px;
  }
  .caret {
    margin-right: -40px;
  }
}
.button {
  background-color: var(--primary);
  color: var(--black);
  font-size: 32px;
  text-decoration: none;
  padding: 10px 40px;
  margin: 0 0 0 auto;
  display: block;
  width: fit-content;
}
.button:hover {
  background-color: var(--primary-shade);
}

.team {
  display: flex;
  flex-direction: row;
  margin-top: 250px;
  justify-content: center;
}
.team > div {
  background-color: var(--tile-color);
  margin-right: 20px;
  border-radius: 10px;
  padding: 20px;
  width: 300px;
  box-sizing: border-box;
}
.team > div .image {
  border-radius: 100%;
  height: 200px;
  width: 200px;
  margin: 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 4px solid var(--primary);
}
.team > div .image img {
  width: 100%;
}
.team > div h4 {
  color: var(--primary);
}
.team > div h4 span {
  font-style: italic;
  font-size: small;
}

@media only screen and (max-width: 600px) {
  .team {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    margin-top: 40px;
  }
  .team div {
    margin-right: 0;
    margin-bottom: 20px;
    width: 100%;
  }
}
.divider {
  background-image: url("../img/divider.png");
  background-size: auto 100%;
  height: 50px;
  position: absolute;
  left: 0%;
  right: 0;
  border: none;
  margin: 100px 0px;
}

@media only screen and (max-width: 600px) {
  .divider {
    position: relative;
    width: 100vw;
    margin: 20px -20px;
    padding-left: 40px;
  }
}
.footer {
  margin-top: 250px;
}

@media only screen and (max-width: 600px) {
  .footer {
    margin-top: 40px;
  }
}

/*# sourceMappingURL=common.css.map */
