:root {
    --corh1: rgb(88, 18, 18);
    --corh2: rgb(41, 6, 6);
    --corh3: rgb(85, 43, 43);
    --corlink: blueviolet;
    --bgcorh123: rgb(250, 250, 234);
}

.barra {
    background-color: rgb(90, 6, 6);
    height: 80px;
    width: 100%;
    padding: 0px;
    margin: 0px;
    color: rgb(255, 255, 255);
    text-align: center;
    font-size: 60px;
    font-weight: bold;
}

body {
    padding: 10px 50px;
    border: 3px solid rgb(102, 102, 102);
    border-radius: 5px;
    margin: 10px 100px;
}

h1 {
    color: var(--corh1);
    background-color: var(--bgcorh123);
}

h2 {
    color: var(--corh2);
    background-color: var(--bgcorh123);
}

h3 {
    color: var(--corh3);
    background-color: var(--bgcorh123);
    text-transform: uppercase;
}

p {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 17px;
    margin-bottom: 20px;
}

button {
    font-size: 15px;
    font-weight: bold;
    
}
.link {
    color: var(--corlink);
    font-size: 20px;
    text-decoration: none;
}

.link:hover {
    color: aqua;
}

.marca {
    background-color: aqua;
}

.p1 {
    color: var(--corlink);
}

.p2 {
    font-size: 25px;
}

.p3 {
    font-weight: bold;
}

.p4 {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.p5 {
    text-align: center;
}

.p6 {
    text-align: justify;
}

.p7 {
    text-decoration: line-through;
}
.p8 {
    text-transform: uppercase;
}

.p9 {
    text-transform: capitalize;
}
.p10 {
    text-transform: lowercase;
}
.p11 {
    text-transform: inherit;
}
.p12 {
    letter-spacing: 5px;
}
.p13 {
    word-spacing: 5px;
}
.p14 {
    line-height: 40px;
}
.p15 {
    text-shadow: 0px 2px 1px red;
}
.p16 {
    text-rendering: geometricPrecision;
}
.p17 {
    text-overflow: clip;
}
.p18 {
    text-overflow: initial;
}

table {
    text-align: center;
}

.tabela1 {
    width: 600px;
    border: 1px solid black;

}
.td1 {
    border: 1px solid salmon;
    background-color: rgb(186, 236, 236);
}

.th1 {
    background-color: rgb(56, 11, 161);
    line-height: 30px;
    font-weight: bold;
    color: white;
}

.td1:hover {
    background-color: rgb(156, 187, 17);
}


.tabela2 {
    width: 600px;
    border: 1px solid black;
}

.tabela2 tbody tr:nth-child(even) {
    background-color: rgb(131, 74, 74);
}
.th2 {
    background-color: rgb(104, 12, 12);
    color: white;
}

.submit {
    border: 1px solid rgb(70, 69, 69);
    background-color:  rgb(8, 131, 90);
    color: white;
    font-weight: bold;
    margin: 10px;
    margin-top: 30px;
    padding: 10px 20px 10px 20px;
}

label {
    display: block;
    margin-top: 13px;
}

input  {
    background-color: rgb(215, 216, 218);
    margin: 10px;
    
    font-size: 12px;
}

.campo {
    border: 1px solid rgb(110, 110, 108);
    padding: 10px;
    margin: 5px;
    width: 450px;
    outline: 0;
}

form {
    padding: 5px;
    width: 500px;
}

textarea {
    resize: none;
    height: 200px;
    width: 450px;
    margin-top: 10px;
}

.titulos {
    margin-left: 7px;
    font-size: 18px;
    margin-top: 20px;
    font-weight: bold;
}


select {
    width: 450px;
    margin: 5px;
    padding: 10px;
}


fieldset {
    background-color: azure;
    margin-bottom: 20px;
    border: 1px solid black;
}

legend {
    background-color: rgb(0, 0, 0);
    color: white;

}

.hexadecimal {
    color: #000000;
}


.blu { 
    color: rgb(2, 104, 134);
}
.orange {
    color: #e2a624;
}

li {
    font-size: 20px;
}









@media (max-width: 768px) {

    body {
        padding: 4px 20px;
    border: 2px solid rgb(102, 102, 102);
    border-radius: 3px;
    margin: 5px 50px;
    }

}

@media (max-width: 425px) {

    body {
        padding: 1px 5px;
    border: 1px solid rgb(102, 102, 102);
    border-radius: 3px;
    margin: 3px 10px;
    }

    .barra {
        background-color: rgb(90, 6, 6);
        height: 30px;
        width: 100%;
        padding: 0px;
        margin: 0px;
        color: rgb(255, 255, 255);
        text-align: center;
        font-size: 20px;
        font-weight: bold;
        padding-top: 10px;
        
    }
    h1, h2 {
        font-size: 18px;
    }
    p {
        font-size: 14px;
    }
    table, .tabela1, .tabela2 {
        font-size: 12px;
        width: 270px;
    }
    input {
        width: 40px;
    }
    img {
        max-width: 270px;
    }
    label {
        display: none;
        margin-top: 5px;
    }
    
    input  {
        background-color: rgb(215, 216, 218);
        margin: 4px;
        
        font-size: 12px;
    }
    
    .campo {
        border: 1px solid rgb(110, 110, 108);
        padding: 3px;
        margin: 1px;
        width: 270px;
        outline: 0;
    }
    
    form {
        padding: 3px;
        width: 270px;
    }
    
    textarea {
        resize: none;
        height: 200px;
        width: 270px;
        margin-top: 3px;
    }
    
    .titulos {
        margin-left: 3px;
        font-size: 10px;
        margin-top: 7px;
        font-weight: bold;
    }
    
    
    select {
        width: 270px;
        margin: 3px;
        padding: 5px;
    }
    .submit {
        width: 90px;
    }
}
/* Aqui inicia o código que permite o vídeo ficar responsivo sem aparecer a tarja preta nas laterais. */
.video {
    width: 100%;
    max-width: 700px;
    margin: auto;
}
.video-area {
    position: relative;
    height: 0px;
    background-color: aliceblue;
    padding: 0px 0px 56.25%;
}
.video-area iframe {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    border: 0px;
}
/* Aqui finaliza o código que permite o vídeo ficar responsivo sem aparecer a tarja preta nas laterais. */

img .minmax {
    width: min (50%, 400px);
}


footer {
    height: calc(100% - 20px);
    padding-top: calc(300px - 20%);
    text-align: center;
    font-size: 20px;
    font-weight: lighter;
    background-color: rgb(0, 0, 0);
    color: white;

}