.html, .body, canvas {
    background: #8c7640;
}

* {
    font-family: helvetica, arial;
}

.header {
    position: fixed;
    top: 2%;
    z-index: 9;
    width: 100vw;
    left: 1%;
}

.header svg {
    width: 98%;
}

.hero-wrapper svg {
    position: fixed;
    z-index: 3;
    width: 78%;
    top: 36vh;
    left: 15px;
}

canvas {
    position: fixed;
    width: 100%;
    height: 100%;
}

.outdoor {
    position: fixed;
    z-index: 2;
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
}

.outdoor img {
    width: 100%;
}

@media screen and (max-width: 720px) {
  .outdoor img {
    width: 200%;
    }

    /*canvas {
    transform: scale(0.5);
    width: 200vw!important;
    height: 200vh!important;
    transform-origin: top left;
    }*/
}

.bottom-image {
    bottom: calc(2vh + 15px);
}

@media screen and (max-width: 720px) {
  .bottom-image {
    bottom: calc(5vh + 30px);
}
}


.contd {
    width: 100%;
    background: #efeed8;
    border-radius: 1vw;
    z-index: 5;
    top: 96vh;
    position: absolute;
    padding: 15px;
    box-sizing: border-box;
}

@media screen and (max-width: 720px) {
  .contd {
    width: 96%;
    left: 2%;
    top: 91%;
  }
}

.contd img {
    width: 100%;
    position: relative;
}


.live-video-holder {
    position: fixed;
    top: calc(6vh + 1vw + 15px);
    right: 15px;
    width: 27vh;
    /* height: 14vh; */
    z-index: 2;
    border-radius: 1vmin;
    transform: scale(1.1);
    transform-origin: top right;
}

@media screen and (max-width: 720px) {
  .live-video-holder {
    width: 45vw;
    transform: none;
    top: 15px;
  }
}

.live-video-holder video {
    max-width: 100%;
    border-radius: 1vmin;
}

.live-notice {
    position: absolute;
    top: .5vh;
    left: .5vh;
    font-size: 13px;
    display: flex;
}

.live-notice span {
    display: inline-block;
    padding: 0.4vh 1vh;
    background: white;
    border-radius: 5.4vh;
    display: flex;
    font-size: 15px;
    line-height: 1.1;
}

.live-notice span:first-child::before {
    content: '';
    width: 13px;
    height: 13px;
    background: red;
    border-radius: 15px;
    margin-right: .4vh;
    animation: live 1s infinite;
    }

.live-notice span:last-child {
    background: #ad9789;
    margin-left: .4vh;
}

@keyframes live {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
