header {
  background-color: #00115e;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
  padding: 16px 8px;
}

.headerWrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  margin: auto;
}

header img {
  width: 160px;
}

.paragraphAndSpan{
  display: flex;
}
.paragraphAndSpan a {
  text-decoration: none;

  display: flex;
  flex-direction: row;
  width: auto;
  align-items: center;
  gap: 4px;

  color: var(--white-color);
  font-size: 12px;
  font-weight: bold;
}
.paragraphAndSpan a:visited {
  text-decoration: none;
}

@media screen and (min-width: 540px) {
  .headerWrapper{
    width: 96%;
  }
}

@media screen and (min-width: 760px) {
  .headerWrapper {
    width: 94%;
  }
}

@media screen and (min-width: 1300px) {
  .headerWrapper {
    width: 70%;
    padding: 0px 8px;
  }
  
  header img {
    width: 192px;
  }

  .paragraphAndSpan {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.56px;
    gap: 8px;
  }
}