@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,600,700,800");
@import url("https://fonts.googleapis.com/css?family=Oswald:300,400,500,600,700,800");

html,
body {
  font-family: Roboto;
  /* height: 100vh; */
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  background-image: url('../img/gk-vignete-bg.jpg');
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

#avz {
  background-image: url('../img/avz-vignete-bg.jpg');
}

.content {
  flex-direction: column;
  align-items: center;
}

.vignetes {
  position: absolute;
  bottom: 0;
  left: 10%;
  max-width: 500px;
  min-width: 200px;
  width: 50%;
  height: auto;
}

.content img {
  margin-left: 4rem;
  width: 80%;
  max-width: 400px;
  height: auto;
}

#avz .content img {
  width: 80%;
  max-width: unset;
}

form label {
  color: #fff !important;
}

.logo {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.logo img {
  max-width: 250px;
}

.content .vignete-title h1{
  color:white;
  font-size: 5rem;
  margin-bottom:0;
  text-transform: uppercase;
}

.content .vignete-title p{
  color:white;
  font-size: 3rem;
  text-transform: uppercase;
}

@media screen and (max-width:768px) {

  .logo {
    margin-bottom: 2rem;
  }

  .vignetes {
    display: none;
  }

  body,
  html {
    flex-direction: column;
  }

  .content img {
    margin-left:0;
    width: 80%;
    height: auto;
  }

  .columns {
    padding: 2rem 0;
  }

  .columns:last-child {
    margin-bottom: 0!important;
  }
  
}