header {
  display: flex;
  flex-direction: column;
  font-family: "arial";
  box-shadow: 0px 0px 200px rgb(0, 34, 255);
  margin: 0;
  padding: 0;

  background-color: white;

  margin-bottom: 10px;
}
body {
  margin: 0;
}

header a {
  flex: 1;
  text-decoration: none;
}

header .patasoupir {
  font-size: 23px;
  text-align: justify;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-left: 5px;
  font-family: "arial", sans-serif;
  align-items: center;
}

header .patasoupir a {
  color: blue;
}
header .patasoupir a:hover {
  color: rgba(255, 255, 255, 0.299);
}
header .menu {
  display: flex;
  text-align: center;
  flex-direction: row;
  flex: 1;
  font-size: 13pt;

  border-bottom: dotted 8px yellow;
  border-top: dotted 8px yellow;
  background-color: rgb(0, 0, 0);
}

header .menu a {
  color: red;
  text-decoration: none;
}
header .menu a:hover {
  text-decoration: underline;
}
