* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #fff;
  font-family: Arial, sans-serif;
}

header {
  display: flex;
  align-items: center;
  width: 100vw;
  height: auto;
  padding: 10px;
  box-sizing: border-box;
  border-bottom: #4714d1 1px solid;
}

.image-container {
  flex: 0 0 auto;
}

.image-container img {
  max-width: 100%;
  height: auto;
}

.head-text {
  font-size: 60px;
  color: red;
  text-transform: uppercase;
  margin-left: 20px;
}

@media (max-width: 768px) {
  .head-text {
      font-size: 40px;
  }
}

/* Container for the iframe */
.container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%;
}

/* Style the iframe to fit in the container div with full height and width */
.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


@media (max-width: 768px) {
  .container {
    padding-top: 0;
    height: 80vh;
  }

  .responsive-iframe {
    position: relative;
    height: 100%;
  }
}