body {
    margin: 0;
    padding: 0;
    font-family: 'Unica One', sans-serif;
}
section {
    height:90vh;
    background: #000;
}
section:before{
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: linear-gradient(to bottom, red , rgb(136, 6, 6), black);
/* background-image: linear-gradient(to right, red , yellow,#FF8700, yellow, red); */
mix-blend-mode: multiply;
pointer-events: none;
}
video{
object-fit: cover;
height: 100%;
width: 100%;
visibility: visible !important;
}

#imageBlock{
    margin: 0;
    padding: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
    color: #ddd;
    font-size: 5em;
}

.bros {
    max-height: 90vh;
}

#buttonBlock {
    margin: 0;
    padding: 0;
    position: absolute;
    top: 63%;
    width: 100%;
    text-align: center;
    transform: translateY(-50%);
}

.button {
    border: none;
    color: white;
    font-size: 1em;
    /* padding: .3em;
    padding-top: .4em; */
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 4px 2px;
    cursor: pointer;
    /* background-color: #c80707; */
    letter-spacing: .1em;
    min-width: 3em;
    line-height: .5em;
  }

  .button span {
      font-size: .5em;
      transition: transform .7s ease-in-out;
  }

  .button:hover {
      /* background-color: black; */
      transform: rotate(3deg);
      transition-duration: 500ms;
      /* opacity: .8; */
  }
  
  .buttonUS {
      margin-right: 250px;
  }

  .buttonUK {
    margin-left: 250px;
}


footer {
    height: 2vh;
    background-color: #000;
    color:#fff;
    opacity: 95%;
    /* margin-top: -4vh; */
    padding: 2em;
    text-align: center;
}

.copy {
    font-size: .5em;
    text-transform: uppercase;
}

@media only screen and (max-width: 1000px) {
    
    #imageBlock{
        top:40%;
    }

    .bros {
        /* max-height: 50vh; */
        max-width: 70vw;
    }

    .buttonUS, 
    .buttonUK {
        margin:20px;
    }
    
    #buttonBlock {
        top: 85%;
    }

  }

  
  @media only screen and (max-width: 600px) {
    
    #imageBlock{
        margin: 0;
        padding: 0;
        position: absolute;
        top: 30%;
        transform: translateY(-50%);
        width: 100%;
        text-align: center;
        color: #ddd;
        font-size: 5em;
    }

    .bros {
        /* max-height: 50vh; */
        max-width: 75vw;
    }

    .logo {
        /* max-height: 50vh; */
        /* max-width: 50vw; */
    }

    .buttonUS, 
    .buttonUK {
        margin:20px;
    }

    
    #buttonBlock {
        top: 85%;
    }
    #buttonBlock .button {
        min-width: 0;
    }
    #buttonBlock .button img {
        font-size: .4em;
        max-width: 25vw;
        margin: 0;
    }

  }