/*Barra de Navegação*/
.barranav {
  overflow: hidden;
  background-color: rgb(26, 26, 26);
  position: fixed;
  top: 0;
  width: 100%;
}
.barranav a {
  float: left;
  display: block;
  color: #f2f2f2;
  font-family: 'Times New Roman', Times, serif;
  font-size: 22px;
  text-align: center;
  padding: 16px 15px;
  text-decoration: none;
}
.barranav a:hover {
  background: #ddd;
  color: black;
}

/*Grelha de Fotografias*/
.grade {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
  position: center;
}
.coluna {
  flex: 24%;
  max-width: 35%;
  padding: 0 4px;
  margin: auto;
}
.coluna img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

/*Subtitulos*/
.subtitulo {
  font-family: Impact, 'Arial Narrow Bold', sans-serif;
  color: rgb(0, 0, 0);
  margin-top: 50px;
  font-size: 40pt;
  text-shadow: 2px 2px 2px white;
}

/*Imagem do "Sobre"*/
.sobrefundo {
  position: sticky;
  z-index: -1;
}

/*Contactos*/
.textocont {
  font-size: 25pt;
  font-family: Georgia, 'Times New Roman', Times, serif;
  color: white;
}

/*Hiperligação*/
a:link {
  color: rgb(255, 255, 255);
}
a:visited {
  color: rgb(255, 255, 255);
}
a:hover {
  color: rgb(255, 255, 255);
}
a:active {
  color: rgb(255, 255, 255);
} 

/*Media Queries*/
@media screen and (max-width: 1200px) {
  .textocont {
    font-size: 20pt;
  }
  .subtitulo {
    font-size: 30pt;
    line-height: 1em;
  }
  .barranav a {
    float: left;
    display: block;
    color: #f2f2f2;
    font-family: 'Times New Roman', Times, serif;
    font-size: 18px;
    text-align: center;
    padding: 14px 15px;
    text-decoration: none;
  }
}
@media screen and (max-width: 768px) {
  .textocont {
    font-size: 16pt;
  }
  .subtitulo {
    font-size: 25pt;
    line-height: 1em;
  }
  .barranav a {
    float: left;
    display: block;
    color: #f2f2f2;
    font-family: 'Times New Roman', Times, serif;
    font-size: 15px;
    text-align: center;
    padding: 12px 15px;
    text-decoration: none;
  }
}
@media screen and (max-width: 320px) {
  .textocont {
    font-size: 10pt;
  }
  .subtitulo {
    font-size: 20pt;
    line-height: 1em;
  }
  .barranav a {
    float: left;
    display: block;
    color: #f2f2f2;
    font-family: 'Times New Roman', Times, serif;
    font-size: 12px;
    text-align: center;
    padding: 12px 15px;
    text-decoration: none;
  }
}