* {
  box-sizing: border-box;
  margin: 0;
  border: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Montserrat", "Century Gothic", Arial, Helvetica, sans-serif;
}
.menu {
  cursor: pointer;
}
.organization {
  display: flex;
  flex-direction: column;
  scroll-snap-type: y mandatory;
  scroll-snap-points-y: repeat(100vh);
}
.sobre {
  scroll-snap-align: start;
}
.trabalho {
  scroll-snap-align: start;
}
figure {
  max-width: 100%;
}
.contactos {
  scroll-snap-align: start;
}
a:link,
a:visited {
  font-weight: 650;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  text-decoration: none;
  transition-property: inherit;
  transition-duration: 200ms;
}
a:hover,
a:active {
  color: rgb(255, 255, 255);
}
a.homebutton:link,
a.homebutton:visited {
  font-weight: 650;
  color: rgba(202, 202, 202, 0.45);
  text-align: center;
  text-decoration: none;
  transition-property: inherit;
  transition-duration: 200ms;
}
a.homebutton:hover,
a.homebutton:active {
  color: rgb(153, 153, 153);
}
