@charset "utf-8";
/* CSS Document */

.googleform {
  text-align: center;
  height: calc(100vh - 240px);
  margin-top: 200px;
}

.googleform iframe {
  width: 100%;
}

body {
  background-image: url('/assets/images/degradat.png');
  background-repeat: no-repeat;
  background-size: cover;
}

.logo {
  display: flex;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
}

.logo > picture {
  max-width: 100%;
}

.logo > picture > img{
  max-width: 100%;
}

section {
  margin: 0 auto;
  max-width: 800px;
  padding: 20px;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.background .a-responsive-image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.background .a-responsive-image > img {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

@media (min-width: 1024px) {
  .googleform {
    height: calc(100vh - 40px);
    margin-top: 0;
  }
  .logo {
    width: auto;
  }
}

