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

.logo-mario {
    height: 200px;
}

button {
    background-color: #c51111;
    color: white;
    border-radius: 6px;
    border: none;
    width: 200px;
    height: 50px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 20px;
    font-size: 15px;
}

button:hover {
    background-color: blue;
    opacity: 0.6;
    transition: 0.5s ease-in-out;
}

.mario-luigi {
    height: 500px;
}

body {
    height: 100vh;
}

main {    
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px;
    height: 70%;
}

article {
    width: 51%;
}

.caixa-video {
    position: fixed;    
    top: 0;
    z-index: -3;
}

video {
    min-width: 100%;
    min-height: 100%;
    position: fixed;
    top: 0;
}

.marcara {
    height: 100%;
    width: 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%);
}

p {
    color: white;
}

.link-whatssap img {
    position: fixed;
    height: 50px;
    right: 20px;
    bottom: 30px;
}

header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 30px;
}

header img {
    height: 60px;

}

header a {
    color: white;
    font-size: 25px;
    cursor: pointer;
}

.home:hover {
    color: #c51111;
    font-size: 26px;
    transition: 0.5s ease-in-out;
}

.services:hover {
    color: rgb(8, 224, 8);
    font-size: 26px;
    transition: 0.5s ease-in-out;    
}

.speak:hover {
    color: rgb(6, 70, 247);
    font-size: 26px;
    transition: 0.5s ease-in-out;    
}

.fale-conosco {
    background-color: rgb(235, 228, 215);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 30%;
    left: -300px;
    padding: 20px;
    border-radius: 5px;
    gap: 20px;
    transition: left 1s ease-in-out;
}

input {
    height: 40px;
    border-radius: 5px;
    border: 1px solid gray;
    padding-left: 5px;
    outline-color: #c51111;
}

.telefone {
    outline-color: rgb(8, 224, 8);
}

textarea {
    width: 270px;
    height: 100px;
    border-radius: 5px;
    border: 1px solid gray;
    padding-left: 5px;
    outline-color: rgb(6, 70, 247);

}

.marcara-formulario {
    visibility: hidden;
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    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%);
    transition: visibility 1s ease-in-out;
}

/* Final

top: 30%;
left: 50%;
transform: translateX(-50%);
*/