@import url("https://fonts.googleapis.com/css2?family=Calistoga&family=Lilita+One&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Bungee+Shade&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100;200;300;400;500;600;700;800;900&display=swap");

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

Cores principais do site:

-#053F61
-#50AFE6
-#0B92E0
-#224A61
-#0970AD

Fontes do site:

    font-family: 'Calistoga', cursive;

    font-family: 'Bungee Shade', cursive;

    font-family: 'Roboto Slab', serif;

*/
* {
  margin: 0px;
  padding: 0px;
}

/*Conteudo de navegação*/
header {
  background-image: url("../imgs/fundo.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.247);
  height: 150px;
  transition: height 400ms;
}

header > h1 {
  text-align: center;
  font-family: "Comfortaa", cursive;
  padding: 10px;
  color: white;
  font-size: 2.2em;
}

header > p {
  text-align: center;
  color: white;
  margin-bottom: 20px;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.445);
  font-family: "Comfortaa", cursive;
  padding: 10px 0px 30px 0px;
  font-size: 1em;
}

header > menu {
  margin-bottom: 4px;
  margin-top: 0px;
}
header > menu > ul > li > a {
  text-decoration: none;
  color: white;
  border-radius: 20px;
  font-family: "Roboto Slab", serif;
  padding: 10px;
}

header > menu > ul > li:hover {
  background-color: #50afe6;
  transition: 500ms;
}

ul > li {
  text-align: center;
  width: fit-content;
  margin: auto;
  list-style: none;
  font-size: 1.1em;
  padding-bottom: 5px;
  border-radius: 20px;
  margin-top: 5px;
  font-family: "Calistoga", cursive;
}

i#burguer {
  text-align: center;
  display: block;
  position: absolute;
  right: 5px;
  top: 10px;
  padding: 10px;
  cursor: pointer;
  color: white;
}

menu {
  display: block;
}

/*Conteudo do sobre nós*/

#sobre {
  padding: 1rem;
  background-color: #ffffff;
}
.titlo {
  display: flex;
  align-items: center;
}
#sobre h1 {
  font-size: 2rem;
  color: #053f61;
  font-family: "Comfortaa", cursive;
}

#sobre .logo {
  width: 100px;
  margin-left: 15px;
  height: 100px;
}

#sobre p {
  font-family: "Roboto Slab", serif;
  line-height: 1.5rem;
}

#sobre b {
  border-bottom: 2px solid yellow;
  color: #053f61;
  font-weight: bold;
}

#sobre b:hover {
  animation: pular 700ms ease-in-out infinite;
  cursor: pointer;
}

@keyframes pular {
  0% {
    padding-bottom: 0px;
  }
  50% {
    padding-bottom: 2px;
  }
  100% {
    padding-bottom: 0px;
  }
}

#sobre .insta-link {
  display: flex;
  align-items: center;
  margin-top: 20px;
  padding: 5px;
  width: fit-content;
}
#sobre .insta-link svg {
  padding: 2px;
  animation: instamove 1200ms infinite ease-in-out;
}

@keyframes instamove {
  0% {
    transform: rotate(0deg);
  }
  45% {
    transform: rotate(-10deg);
  }
  75% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

#sobre .insta-link a {
  text-decoration: none;
  color: white;
  padding: 3px;
  border-radius: 5px;
  background-color: red;
  font-family: "Roboto Slab", serif;
  transition: 500ms;
}

.redes {
  border: 2px solid #4895c2;
  background-color: #053f61;
  color: white;
  width: fit-content;
  margin: 50px auto;
  padding: 5px;
  border-radius: 10px;
  box-shadow: 6px 6px 0px #032133;
}

.redes #redes-t {
  font-size: 1rem;
  color: white;
  font-family: "Roboto Slab", serif;
}

footer{
  padding: 20px;
  background-color: #053F61;
  color: white;
  display: flex;
  justify-content: space-between;
  font-family: 'Comfortaa', cursive;
}
footer div{
  display: flex;
  flex-direction: column;

  justify-content: center;
  align-items: center;
}

footer div ul{
  display: flex;
  margin: 20px;
  flex-direction: column;
  justify-self: center;
}

footer div ul li{
  font-family: 'Comfortaa', cursive;
  font-size: 0.9rem;
  text-align: left;
  width: 100%;
}

footer div ul li a{
  color: yellow;
  text-decoration: none;
}
footer img{
  width: 90px;
  height: 90px;
}
