* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    
    background-color: #fef3c7;
    height: 100vh;
    position: relative;
    
}

video {
    width: 100%;
}

canvas {
    display: none;
    width: 100px;
    height: 50px;
}

a{
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;  
  color: #bc560a;
  margin: 50px 0px;
}

button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    background-color: #ffffff;
    border: 1px solid #bc560a;
    color: #bc560a;    
    width: 100px;
    height: 50px;
    border-radius: 9999px;
}

button:hover {
    background-color: #fffbeb;
    outline: 8px solid #fde58a;
}

/* media queries */

@media (min-width: 700px) {
    body {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    video {
        width: 700px;
        height: 700px;
    }
}