/*corpo do website*/

body {
  margin: 0;
  font-family: sans-serif;
}

/*barra de navegação*/

.navegação {
  
  text-align: right;
  height: 40px;
  position: fixed;
  top: 0;
  width:100%;
  background:black; 
}

.menu {
  margin: 0 30px 0 0;
  
  
}
.menu a {
  clear: right;
  text-decoration: none;
  color:white;
  margin: 0 10px;
  line-height: 40px;
}


label {
  margin : 0 40px 0 0;
  font-size: 26px;
  line-height: 70px;
  display: none;
  width: 26px;
  float: right;
}

#toggle {
  display: none;
}

/* barra de navegação/menu para telemóvel*/
@media only screen and (max-width: 500px) {
  label {
      display: block;
      cursor: pointer;
      line-height: 40px;
  }
  .navegação {
  
    text-align: right;
    height: 40px;
    position: fixed;
    top: 0;
    width:100%;
    background: cadetblue; 
  }
  .menu {
      text-align: center;
      width: 100%;
      display: none;
  }
  .menu a {
      display: block;
      background: cadetblue;
      margin: 0;
      line-height: 25px;
   
  }
  #toggle:checked + .menu {
      display: block;
  } 
}

/*cabeçalho*/
.hero {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: url(../images/fotominha.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}

/*texto do cabeçalho*/
.hero h1 {
  font-size: 4em;
  margin-top: 0;
  margin-bottom: 0.5em;
  color: white;
  text-shadow: black 0.1em 0.1em 0.2em;
  
}

.hero h2{
  text-align: center;
  font-size: 26px;
  font-family: 'Nanum Gothic', sans-serif;
  color: white;
  text-shadow: black 0.1em 0.1em 0.2em;
}

/*botão do cabeçalho*/
.hero .botao {
  display: block;
  width: 200px;
  padding: 1em;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  color: white;
  text-decoration: none;
  font-size: 1.5em;
  border: 3px solid white;
  border-radius: 20px;
  background-color:black;

}

/*textos*/
h1{
  text-align: center;
  font-size:46px;
  margin-top: 70px;
}

h2{
  text-align: center;
  font-size: 22px;
  font-family: 'Nanum Gothic', sans-serif;
  color: black;
}

h4{
  text-align: center;
  margin-top: 30px;
  
}

p{ 
  text-align: justify;
  font-size: 14px;
  margin-top: 50px;
  margin-bottom: 50px;
  margin-left: 35px;
  margin-right: 35px;
  font-family:'Nanum Gothic', sans-serif;
  line-height: 24px;
}  



/*design gráfico e multimédia / fotos*/
div.galeria img {
  width: 100%;
  height: auto;
}

div.desc {
  padding: 15px;
  text-align: center;
}

* {
  box-sizing: border-box;
}

.responsive {
  padding: 0 6px;
  float: left;
  width: 24.99999%;
}

@media only screen and (max-width: 700px) {
  .responsive {
    width: 49.99999%;
    margin: 6px 0;
  }
}

@media only screen and (max-width: 500px) {
  .responsive {
    width: 100%;
  }
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/*contacte-me*/
* {
  box-sizing: border-box;
}


input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1.2px solid cadetblue;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

input[type=submit] {
  background-color: black;
  color: white;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color:black;
}

.container {
  border-radius: 5px;
  background-color:white;
  padding: 10px;
}

.column {
  float: left;
  width: 50%;
  margin-top: 6px;
  padding: 20px;
}

@media screen and (max-width: 600px) {
  .column, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }

  