@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  height: 100%;
  background-color: rgb(245, 240, 240);
  overflow-x: hidden;
}
body {
  font-family: "Montserrat", sans-serif;
  font-weight: 100;
  color: rgb(17, 17, 17);
}

/* menu e logo*/

header {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-around;
  background-color: rgb(245, 240, 240);
  align-items: center;
  box-shadow: 0 0 8px 0 black;
}

.logo-header > a {
  padding: 2% 0;
}

.logo-header > a > img {
  margin-top: 10px;
  width: 100px;
  height: 100px;
}

.menu-header > ul {
  display: flex;
  flex-direction: row;
  gap: 0.8in;
}

li {
  list-style-type: none;
}

li > a {
  color: #0769da;
  font-size: 20px;
  text-decoration: none;
  font-weight: bold;
}
li > a:hover {
  color: #0150aa;
}

@media screen and (max-width: 1059px) {
  header {
    justify-content: space-between;
    padding: 0 2%;
  }
  .menu-header {
    background-image: url(../images/barra-de-menu.png);
    width: 50px;
    height: 50px;
    background-size: cover;
    background-position: center;
  }
  .menu-header:hover ul {
    background-color: rgba(0, 0, 0, 0.7);
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    height: 100vh;
    width: 250px;
    z-index: 1;
    text-align: center;
    padding-top: 90px;
  }
  .menu-header:hover ul li {
    padding: 5% 2%;
  }
  .menu-header ul {
    display: none;
  }
}
