* {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
    font-family: 'Allura', cursive;
}
.caixa-video-natal {
    position: fixed;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}

video {
    position: fixed;
    top: 0;
    min-height: 100%;
    min-width: 100%;
}
.mascara-video {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    background: linear-gradient(109deg, rgba(10, 12, 16, 0.99) 15%, rgba(10, 12, 16, 0.7) 50%, rgba(10, 12, 16, 0.99) 85%);
}
.container {
    color: gold;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(50, 125, 50, 0.8);
    padding: 15px;
    border-radius: 15px;
    width: 35%;
}


h1 {
    font-size: 120px;
    text-align: center;
}

h2 {
    font-size: 35px;
    text-align: center;
}

p {
    font-size: 35px;
    text-align: center;
    padding-right: 8px;
    padding-left: 8px;
}

.select {
    display: flex;
    justify-content: center;
    padding-right: 4px;
}

input {
    background: silver;
    border: 1px solid wheat;
    border-radius: 4px;
    height: 50px;
    width: 90px;
    font-size: 30px;
    color: red;

}
button {
    
    height: 40px;
    width: 200px;
    background: red;
    border: none;
    border-radius: 4px;
    color: #fff;
    display: block;  
    margin: 20px auto;
    cursor: pointer;
    font-size: 40px;
}
button:hover{
    opacity: 0.6;
}
button:active{
    opacity: 0.3;
}