@media all and (min-height: 50px) and (max-height: 599px) {
  body {
      font-size: 8px;
    }
}

@media all and (min-height: 600px) and (max-height: 1999px) {
  body{
    font-size: 1.5vh;
  }
}

@media all and (min-height: 2000px) {
  body {
    font-size: 30px;
  }
}

* {
  box-sizing: border-box;
}

html {
  min-width: 1000px;
  min-height: 700px;
}

body {
  font-family: 'Quicksand', sans-serif;
  background-image: url("../imagens/fundo.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

h3{
  color: white;
  font-size: 1.5em;
}

.logo{
	  margin-top: 17%;
}
.titulo{
	letter-spacing: 1px;
  margin-top: -1%;
}

a{
   color:rgb(98,161,212);
   text-decoration: none
}
a:visited{
	animation: none;
}
a:hover{
	color: rgb(255,214,131);
}

