@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500&display=swap');


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

*:root {
    --cor1: #471212;
    --cor2: #181818;
    --cor3: #272727;
    --cor4: #ED4746;
    --cor5: #C0392B;
    --cor6: #999999;

    --font01: 'Open Sans', sans-serif;
    --font02: Arial, Verdana, Helvetica, sans-serif;
}

html, body{
    background-color:lightgray;
    min-height: 100vh;
    
}

#burger{
    border-top: 2px solid #414141;
    color: var(--cor6);
    display: block;
    text-align: center;
    padding: 8px;
    cursor: pointer;
}

#burger:hover{
    background-color: white;
    color:var(--cor5);
    transition: 0.5s;
}

header{
    background-color: var(--cor3);
}

.logo{
    height: 90px;
    width: 90px;
    margin: 3px 15px;
}

.top, .h1top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px 0px;
    font-size: 90%;
    max-width: 1100px;
    margin: 0px auto;
}

header > section > h1 {
    font-size: 2em;
    color: white;
    font-family: var(--font01);
}

.header-sidebar{
    display: flex;
    justify-content: space-evenly;
    gap: 20px;
    align-items: center;
    
    
}

.social-media-container > img{
    display:inline-block;
    height: 22px;
    width: 22px;
    filter: invert(61%) sepia(3%) saturate(8%) hue-rotate(30deg) brightness(99%) contrast(87%);
    margin: 0px 5px;

}

.social-media-container > img:hover{
    filter: invert(100%) sepia(5%) saturate(2%) hue-rotate(24deg) brightness(105%) contrast(100%);
}

.datetime{
    font-family: var(--font02);
    color: var(--cor6);
    text-transform: uppercase;
    
}

.navbar{
    display: none;
    position: sticky;
    top: 0;
    background-color: var(--cor3); 
    box-shadow: 0 5px 15px 0 rgb(50 50 50 / 50%);
    font-size: 90%;
    z-index: 3333;
    
}

.navbar > ul{
    border-top: 1px solid #414141;
    list-style-type: none;
    font-family: var(--font01);
    text-transform: uppercase;
}

.navbar > ul > li > a{
    display: block;
    padding: 10px 25px;
    text-decoration: none;
    color: var(--cor6);
    text-align: center;
    font-weight: bold;
    
    
}

.navbar > ul > li > a:hover{
    background-color: white;
    color:var(--cor5);
    transition: 0.5s ease;
    
}
.container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    background-color: rgb(0, 0, 0);
    max-width: 1200px;
    height: 720px; /*adaptar no media query */
    margin: auto;
    position: relative;
}
 .text-box{
    display: flex;
    flex: 60%;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    color: white;
    /* border: 2px solid red; */
 }
 .text-box  h1{
    font-size: 5vw;
    text-align: center;
    position: relative;
    left:30%;
 }

 .text-box p{
    font-size: 10px;
    margin-top: 10px;
    text-align: center;
    position: relative;
    left:31%;
 }

.image > img{
    max-width: 100%;
    height: auto;
    
}
.image{
    display: flex;
    /* border: 1px solid white; */
    align-items: center;
    justify-content: center;
    margin-right: 80px;
    overflow: hidden;
    
}
footer{
    display: block;
    font-family: var(--font01);
    color: white;
    text-align: center;
    background-color: var(--cor3);
    padding: 30px 20px;
}