@font-face {
  font-family: 'Whyte';
  src: url('font/whyte-reg.ttf') format('truetype');
  font-weight: 350;
  font-style: normal;
}

@font-face {
  font-family: 'Whyte';
  src: url('font/whyte-reg-i.otf') format('truetype');
  font-weight: 350;
  font-style: italic;
}

@font-face {
  font-family: 'Whyte';
  src: url('font/whyte-med.otf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Whyte';
  src: url('font/whyte-med-i.otf') format('truetype');
  font-weight: 700;
  font-style: italic;
}


html,
body {
  height: 100%;
  margin: 0;
}

html {
  margin: 0;
  padding: 0;
  scrollbar-gutter: stable;
}

body {
  font-family: 'Whyte', sans-serif;
  font-weight: 350;
  font-size: 18px;
  padding: 0;
  background-color: #ffffff;
  line-height: 125%;
}

li{
  margin-bottom: 12px;
}


footer {
  padding-bottom: 20px;
}

h1 {
  font-weight: 700;
  font-size: 18px;
  text-align: left;
  margin-bottom: 0;
}

h2 {
  font-weight: 700;
  font-size: 18px;
  text-align: left;
  margin-top:20px;
  margin-bottom:0px;
  text-decoration: underline;
}

.logo {
  width: 140px;
  display: block;
  margin: 50px auto;
}

header {}

footer {
  width: 40%;
  margin: 40px auto 0 auto;
  text-align: left;
}

.content {
  width: 40%;
  margin: -10px auto 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
}


.equipa {
  margin-top: 40px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.membro {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.nome {
  width: 40%;
  font-weight: bold;
}

.nome span {
  font-weight: 350;
}

.descricao {
  width: 60%;
}

@media screen and (max-width: 1800px) {
  footer {
    width: 50%;
  }

  .content {
    width: 50%;
  }
}

@media screen and (max-width: 1100px) {
  footer {
    width: 60%;
  }

  .content {
    width: 60%;
  }
}

@media screen and (max-width: 900px) {
  footer {
    width: 70%;
  }

  .content {
    width: 70%;
  }
}

@media screen and (max-width: 770px) {
  footer {
    width: 80%;
  }

  .content {
    width: 80%;
  }
}

@media screen and (max-width: 620px) {
  footer {
    width: 90%;
  }

  .content {
    width: 90%;
  }
}

@media screen and (max-width: 550px) {
  .logo {
    width: 120px;
    margin: 30px auto 20px auto;
  }

  .content {
    width: 93%;
    margin: 0px auto 0 auto;
  }

  .equipa {
    margin: 20px auto 20px auto;
    width: 100%;
  }

  footer {
    width: 93%;
    margin: 0px auto 0 auto;
    padding-bottom: 10px;
  }

  .membro {
    flex-direction: column;
    gap: 4px;
  }

  .nome,
  .descricao {
    width: 100%;
  }

  h1 {
    font-size: 16px;
  }

  body {
    font-size: 16px;
  }
}