html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: black;
  display: flex;
  justify-content: center;
}

.container {
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(30% - 20px,(40rem - 100%)*999, 100%), 1fr));
  gap: 20px;
}

.content-container {
  height: 90vh;
  background-color: black;
  border: 2px solid white;
  border-color: #fff;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.video-container {
  display: grid;
  align-items: center;
  justify-content: center;
}

#video {
  grid-row: 1;
  grid-column: 1;
  height: 90vh;
}

#video-poster {
  grid-row: 1;
  grid-column: 1;
  height: 90vh;
  align-self: center;
  justify-self: center;
}

#play-button {
  z-index: 1;
  grid-row: 1;
  grid-column: 1;
  align-self: center;
  justify-self: center;
  width: 10vh;
  height: 10vh;
  font-size: 2vh;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

#play-button:hover {
  background-color: rgba(255, 255, 255, 0.7);
  color: rgb(0, 0, 0);
}

#text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  color: antiquewhite;
  font-size: 3.5vh;
  font-family: "Roboto";
}

.logo-container {
  width: auto;
  height: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#logo {
  width: 20vh;
  height: 20vh;
}

/* Extra small devices (phones, 640px and down) */
@media only screen and (max-width: 640px) {
}

/* Small devices (portrait tablets and large phones, 640px and up) */
@media only screen and (min-width: 640px) and (orientation: landscape) {
}

@media only screen and (min-width: 640px) and (orientation: portrait) {
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) and (orientation: landscape) {
}

@media only screen and (min-width: 768px) and (orientation: portrait) {
  .container {
    grid-template-columns: repeat(auto-fit, minmax(clamp(30% - 20px,(50rem - 100%)*999, 100%), 1fr));
  }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  .content-container { 
    align-self: center;
  }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  .content-container { 
    align-self: center;
  }
}


