@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap");

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "poppins", sans-serif;
}

header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

header .container {
  max-width: 82rem;
  background-color: red;
  margin: 0 auto;
  padding: 0 1rem;
  height: 65px;
}
header ul {
  display: flex;
  list-style: none;
}

.logo {
  display: flex;
  align-items: center;
  margin-right: 3rem;
}

.logo img {
  height: 35px;
}
