.bg{
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  .bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: inherit;
  }
  /* .gun{
    position: absolute;
    top: 0;
    animation: gun 20s none infinite;
  } */
  .gunOc{
    position: absolute;
    top: 0;
    /* animation: gunOcAnim   20s none infinite; */
  }

.banner{
    display: flex;
    top: 4.5em;
    width: 100%;
    height: 20em;
    background: linear-gradient(to bottom, rgb(20, 20, 20), rgba(20, 20, 20, 0)); /* Adjust colors and direction */
    position: absolute;
  }
  .gridI{
    display: grid;
    height: 100%;
    grid-gap: 4em 1.5em; /* Gap between grid items */
    padding: 1.5em;
    color: white;
    text-align: right;
    background-color: rgb(32, 32, 32);
  }
  .gridE{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
  }
  .gridE iframe{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: none;
    z-index: 1;
  }
  .gridE .p{
    width: 100%;
    height: 100%;
    position: absolute;
    flex-direction: column;
    text-align: center;
    vertical-align: center;  
    top: 0;
    left: 0;
    width: 100%; 
    height:100%; 
    padding:0;
    margin:0;
  }
  
  .gridE .p p{
    font-size: 1.5em;
    font-weight: 300;
  }

  .buttonsContainer{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-top: 40vh;
    z-index: 2;
  }

  .youtubeSub{
    font-weight: 400;
    color: rgb(255, 255, 255);
    font-size: 2em;
    border-radius: 2em;
    background-color: #ff0000;
    text-align: center;
    vertical-align: middle;
    height: 2em;
    width: 6em;
    border-style: none;
    z-index: 3;
    margin-bottom: 0.5em;
}

.x{
  font-weight: 400;
  color: rgb(255, 255, 255);
  font-size: 2em;
  border-radius: 2em;
  background-color: #000000;
  text-align: center;
  vertical-align: middle;
  height: 2em;
  width: 6em;
  border-style: none;
  z-index: 3;
}

.youtubeSub:hover , .x:hover{
    color: white;
    background-color: #0099ff;
    cursor: pointer;
}


  @media screen and (min-width:55em) {
    .gridI {
      grid-template-columns: repeat(2, 1fr);
    }
    .gridELast{
      grid-column: span 2;
    }
  }
  @media screen and (max-width:66em) {
    .gridE .p p{
      font-size: 1em;
      font-weight: 300;
    }
  }
  @media screen and (max-width:55em) {
    .gridE .p p{
      font-size: 1.5em;
      font-weight: 300;
    }
  }
  @media screen and (max-width:42em) {
    .gridE .p p{
      font-size: 1em;
      font-weight: 300;
    }
  }
  @media screen and (max-width:22em) {
    .gridE .p p{
      font-size: 0.7em;
      font-weight: 300;
    }
  }