* {
  margin: 0;
  padding: 0;
  border: 0;
}
@font-face {
  font-family: "Century Gothic";
  src: url("font/GOTHIC.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-family: "Baskerville";
}
body {
  background-color: rgb(7, 47, 85);
  font-family: "Century", sans-serif;
}

header {
  background-color: white;
  text-align: center;
  position: fixed;
  top: 0;
  height: 10vh;
  width: 100%;
  color: black;
  box-shadow: 0px 3px 3px grey;
}
header h1 {
  text-align: center;
  margin-top: 20px;
  font-size: 250%;
}

.print {
  margin-top: 25%;
  top: 10px;
}

.toggle_btn {
  height: 40px;
  width: 40px;
  position: fixed;
  float: left;
  margin-left: 15px;
  top: 3%;
  cursor: pointer;
  background-color: white;
}

.toggle_btn span {
  height: 3px;
  background-color: black;
  width: 100%;
  position: absolute;
  top: 20px;
  left: 0;
}

.toggle_btn span:before {
  content: "";
  height: 3px;
  background-color: black;
  width: 100%;
  position: absolute;
  top: -10px;
  left: 0;
}

.toggle_btn span:after {
  content: "";
  height: 3px;
  background-color: black;
  width: 100%;
  position: absolute;
  top: 10px;
  left: 0;
}

nav.is-open + .open-menu span {
  background-color: transparent;
}
nav.is-open + .open-menu span::before {
  transform: rotate(45deg) translate(20px, 6px);
}
nav.is-open + .open-menu span::after {
  transform: rotate(-45deg) translate(8px, 6px);
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  background: white;
  width: 100%;
  height: 100%;
  transform: translateX(-100%);
  transition: transform 0.2s;
}
nav.is-open {
  transform: none;
}
nav a {
  color: black;
  text-decoration: none;
}

ul {
  padding-top: 40px;
  list-style: none;
  flex-grow: 1;
  margin-right: 15px;
  font-size: 26px;
}

li {
  background-color: white;
  text-align: center;
  height: 29%;
}

.open-menu {
  cursor: pointer;
  margin-top: 10px;
}

.toggle_btn:before {
  top: 10px;
}

.toggle_btn:after {
  top: 17px;
}

section {
  border: solid white;
  border-width: 0.5px;
  margin: 30px;
  background-color: white;
  border-radius: 10px;
}
h1 {
  font-size: 44px;
  margin: 30px;
  text-align: center;
  margin: 50px;
}
img {
  width: 100%;
  margin: auto;
}
p {
  font-size: 26px;
  margin: 20px;
  text-align: center;
}
footer {
  border: solid black;
  border-width: 0.5px;
  background-color: white;
  display: flex;
  justify-content: flex-end;
  padding: 20px;
}
.logo {
  margin: 5px;
  width: 25px;
  height: 25px;
  -webkit-filter: grayscale(0) blur(0px);
  filter: grayscale(0) blur(0px);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.logo:hover {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

@media (min-width: 750px) {
  section {
    margin-left: 120px;
    margin-right: 120px;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 40px;
  }
  h1 {
    margin: 90px;
  }
  p {
    text-align: justify;
  }
  .award {
    float: left;
    width: 350px;
    margin-right: 30px;
    margin-left: 20px;
  }
  .tactil {
    float: right;
    margin-left: 30px;
    width: 350px;
  }
}
@media (min-width: 1100px) {
  section {
    margin-left: 20%;
    margin-right: 20%;
    padding-left: 70px;
    padding-right: 70px;
    padding-bottom: 70px;
  }
  p {
    text-align: justify;
  }
  .award {
    float: left;
    width: 350px;
    margin-right: 30px;
    margin-left: 20px;
  }
  .tactil {
    float: right;
    margin-left: 30px;
    width: 350px;
  }
}
