/* Reset CSS*/
* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  vertical-align: baseline;
}

a, img, audio, video, main {
  display: block;
}

a {
  text-decoration: none;
}

li {
  list-style-type: none;
}

.tfix {
  -webkit-transform: translateZ(0);
}

html {
  scroll-behavior: smooth;
}

form, form * {
  font: normal normal 400 120%/140% Helvetica, Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 100%;
}

body {
  position: relative;
  top: 0;
  left: 0;
  background: blue;
  overflow: hidden;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: flex-start;
  align-content: auto;
}
body video {
  z-index: -1;
  position: fixed;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  object-fit: cover;
  top: 0;
  left: 0;
}
body header {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: auto;
}
body header h1 img {
  width: 130px;
}
body header nav {
  margin: 30px;
  background-color: white;
  border-radius: 10px;
  height: 50px;
}
body header nav ul {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: space-between;
  align-content: auto;
}
body header nav li {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  margin: 15px 20px;
}
body form {
  margin: 200px 100px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  align-content: auto;
  width: 350px;
  background-color: white;
  border-radius: 5%;
}
body form .anade {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  align-content: auto;
  margin: 0 40px 0 0;
}
body form .anade .circulo {
  text-align: center;
  width: 50px;
  height: 50px;
  margin: 60px 10px;
  color: azure;
  background-color: #195093;
  border-radius: 50%;
}
body form .anade .texto {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: flex-start;
  align-content: auto;
}
body form .anade .texto input {
  display: none;
}
body form .anade .texto .titulo {
  font-size: 0.8em;
}
body form .anade .texto .subtitulo {
  font-size: 0.5em;
  text-decoration: underline;
}
body form input {
  width: 80%;
  margin: 10px;
  border-bottom: 1px gray solid;
}
body form textarea {
  width: 80%;
  height: 150px;
  border-bottom: 1px gray solid;
}
body .boton {
  width: 160px;
  height: 40px;
  font-size: 1em;
  border-radius: 50px;
  margin: 10px;
  background-color: grey;
  color: white;
  margin: 30px;
}
body input[type=file] {
  display: none;
}