* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

    body {
        width: 100%;
        min-height: 100vh;
        background: rgb(0, 0, 0);
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }
   
  
   video {
    border-radius: 5px;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
   
}
.container {
    position: relative;
    width: 100vw;
    height: 100vh;
    background: rgba(7, 41, 63, 0.233);
    border-radius: 5px;
    box-shadow: 0 0 15px rgb(255, 255, 255);
    padding: 10px 10px;
}
  .button {
    border-radius: 5px;
    background-color: #f4511e;
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 14px;
    padding: 10px;
    width: 120px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 15px;
  }
  
  .button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
  }
  
  .button span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
  }
  
  .button:hover span {
    padding-right: 25px;
  }
  
  .button:hover span:after {
    opacity: 1;
    right: 0;
  }

.tratamento{
    margin-top: 0%;
    margin-left: 80%;
    text-align: center;
    position: fixed;
    }
.conexao{
      margin-top: -40%;
      margin-left: 80%;
      text-align: center;
      position: fixed;
      }

.off{
        margin-top: 40%;
        margin-left: 80%;
        text-align: center;
        position: fixed;
        
        }

.doc{
  background-color: rgb(255, 242, 0);
  color: black;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  padding: 10px 5px;
  border-radius: 20px;
  transition: all 0.3s;
  box-shadow: 0 0 15px rgb(255, 255, 255);
}
.docoff{
    background-color: rgb(255, 0, 0);
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 15px;
    font-weight: 900;
    padding: 10px 5px;
    border-radius: 20px;
    transition: all 0.3s;
    box-shadow: 0 0 15px rgb(255, 255, 255);
  }
.doc:hover{
  transform: translateY(-7px);
  background: rgba(0, 234, 255, 0.685);
}
