@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

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

header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #FF69B4;
  height: 15vh;
  color: #E4EEF1;
}
header section {
  display: flex;
  align-items: center;
}
header section h1 {
  font-weight: 300;
}
header nav {
  width: 40%;
}
header nav ul {
  display: flex;
  justify-content: space-around;
}
header nav ul a {
  color: #E4EEF1;
  font-size: 20px;
  font-weight: 300;
}
header nav ul a:hover {
  border-bottom: solid 2px #E4EEF1;
  transition: 3s;
}

.sessaoAlerta {
  height: 55vh;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background-color: #FFD9EC;
}
.sessaoAlerta p {
  width: 40%;
  font-size: 23px;
}
.sessaoAlerta img {
  width: 25%;
}

.sessaoCorrida {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background-color: #FF69B4;
  height: 40vh;
}
.sessaoCorrida p {
  width: 50%;
  font-size: 23px;
  color: #EeEEF1;
}
.sessaoCorrida img {
  width: 30%;
}

.sessaoImagens {
  display: flex;
  justify-content: space-evenly;
  background-color: #FFD9EC;
}
.sessaoImagens img {
  width: 60vh;
  padding: 2%;
}

.rodape {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #FF69B4;
}
.rodape .icons {
  display: flex;
}
.rodape .icons img {
  margin: 10%;
  width: 10vh;
}
.rodape .paragrafos {
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    justify-content: center;
    height: 20vh;
  }
  header nav {
    width: 100%;
  }
  header nav ul {
    justify-content: space-evenly;
  }
  header nav ul a {
    font-size: 20px;
  }
  .sessaoAlerta {
    height: 80vh;
    flex-direction: column-reverse;
  }
  .sessaoAlerta p {
    width: 95%;
    font-size: 20px;
    text-align: center;
  }
  .sessaoCorrida {
    height: 80vh;
    flex-direction: column;
  }
  .sessaoCorrida p {
    width: 95%;
    font-size: 20px;
    text-align: center;
  }
}/*# sourceMappingURL=style.css.map */