body,
html {
  margin: 0px;
  background-image: url("/images/background.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  /* justify-content: center;  */
  background-attachment: fixed;
  align-items: center;
  color: #fff;
  text-align: center;
  font-family: Helvetica, Arial, sans-serif;
  height: 100vh;
  user-select: none;
}

#content {
  position: absolute;
  width: 50vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#header {
  background-color: white;
  width: 100%;
  height: 10vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 5vh;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
#bravo {
  width: 60%;
}

#centercontainer {
  border-radius: 5px;
  /* height: 80vh; */
  background-color: #000000b6;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.42857143;
}

h3 {
  margin-bottom: 1vh;
  font-size: 25px;
  font-weight: 100;
}
p {
  margin: 0px 2vw 0px 2vw;
  user-select: text;
}
hr {
  width: 90%;
}
#brandscontainer {
}

.brands {
  margin: 1.2vw;
  padding: 0.3vw;
  width: 10vw;
  height: 10vw;
  object-fit: contain;
  transition: 0.2s ease;
  border-radius: 5px;
}
.brands:hover {
  background-color: rgba(255, 255, 255, 0.24);
}

#footer {
  margin-top: 3vh;
  margin-bottom: 3vh;
}

/* Use a media query to add a break point at 800px: */
@media screen and (max-width: 800px) {
  #content {
    width: 80%; /* The width is 100%, when the viewport is 800px or smaller */
  }
  .brands {
    width: 60vw;
    height: 60vw;
  }
  #motion {
    height: 40vw;
  }
  #bravo {
    width: 90%;
  }
}
