@charset "UTF-8";
:root{
    --azul0:#FFFFE1;
    --marrom1:#d6d6be;
    /* --marrom2:;
    --marrom3:; */
    --marrom4:#190504;
    --cinza:rgba(112, 112, 112, 0.856);
    --fonte:Arial,Verdana,Helvetica,sans-serif;
}
*{
    margin: 0px;
    padding: 0px;
    font-family: Arial, Helvetica, sans-serif;
    
}
body{
    height: 100vh;
    background-color: #302726;
  
}
header{
    display: block;
    text-align: center;
    width: 95vw;
    background: #6e6e6e;
    height: 28vh;     
    margin-top:6px;
    
    
}
div#ftx{
    margin: auto;
    text-align: center;
    background: url(download.jpeg);
    background-position: center center;
    width: 93vw;
    height: 27.3vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    border-radius: 1.5px;
    box-shadow: 1px 1px 7px 1px black;
    
}
div.buni{
    display:block;
    margin-left:0px;
    top: 0px;
    left: 12px;
    
}
#eu{
    width: 120px;                
    height: 120px; 
    border-radius: 30%;
}
h1#tt{
    display:inline-flex;
    margin: auto; 
    width: 210px; /* MUDAR PARA PC */
    height: 33px;
    color: #2b1c1b;
    font-size: 28px;
    position: absolute;
    top:29%;
    left: 46%;
    text-shadow: 1px 1px 4px rgb(31, 28, 28);

}
h1#tt::after{
    content: '|';
    margin-left: 5px;
    opacity: 1;
    animation: pisca .7s infinite;
}
@keyframes pisca {
    0%{
        opacity: 1;
    }
    50%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
.card{
    position: absolute;
    background-color: #190504;
    width: 120px;
    height: 120px;
    overflow: hidden;
    top: 10%;
    left: 5%;
    box-shadow: 1px 1px 8px 2px black;    
}
.card span:first-of-type{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1.8px;
    background: linear-gradient(to right,  transparent, rgb(151, 11, 11));
    animation: animar1 2s linear infinite;
}
@keyframes animar1{
    0%{
        transform: translateX(-100%);
    }
    100%{
        transform: translateX(100%);
    }
}
.card span:nth-of-type(2){
    position: absolute;
    top: 0;
    right: 0;
    width: 1.8px;
    height: 100%;
    background: linear-gradient(to bottom,  transparent, rgb(151, 11, 11));
    animation: animar2 2s linear infinite;
    animation-delay: 1s;
}
@keyframes animar2{
    0%{
        transform: translateY(-100%);
    }
    100%{
        transform: translateY(100%);
    }
}
.card span:nth-of-type(3){
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1.8px;
    background: linear-gradient(to left,  transparent, rgb(151, 11, 11));
    animation: animar3 2s linear infinite;
}
@keyframes animar3{
    0%{
        transform: translateX(100%);
    }
    100%{
        transform: translateX(-100%);
    }
}
.card span:nth-of-type(4){
    position: absolute;
    bottom: 0;
    left: 0;
    width: 1.8px;
    height: 100%;
    background: linear-gradient(to top,  transparent, rgb(151, 11, 11));
    animation: animar4 2s linear infinite;
    animation-delay: 1s;
}
@keyframes animar4{
    0%{
        transform: translateY(100%);
    }
    100%{
        transform: translateY(-100%);
    }
}
main{
    
    min-height: 100vh;
    background:#302726;
}
article{
    display: block;
    margin: auto;
    margin-top: 12px;
    background:url(Brown\ Space\ Walpaper.jpeg) no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    width: 85vw;
    height: 85vh;
}
aside{
    background-color: hsla(7, 10%, 17%, 0.910);
    width: 85vw;
    height: 95vh;
    text-align: center;
    
}
div.conteudo{
    display: block;
    margin-top: 2px;
}
#it{
        color:#b9b1b0 ;
}
#pl{
    width: 29px;
    height: 29px;
}
#pi{
    width: 27px;
    height: 27px;
    margin-left: 7px;
}
#pg{
    width: 33px;
    height: 33px;
    margin-left: 5px;
}
p{
    color:#b9b1b0;
    padding-top: 3px;
    padding-bottom:15px;
}
div#escrito{
    border-radius: 5px;
    display: block;
    margin: auto;
    margin-top: 12px;
    width: 75vw;
    height: 24vh;
    box-shadow: 1px 1px 4px 1px black;
    background-color: rgba(184, 179, 179, 0.453);

}
#escrito h2{
    padding-top: 5px;
    font-size: 4.5vw;
    color: rgb(24, 20, 20);
}
#escrito p{
    color: #0a0202;
    font-size: 14px;
}
#escrito > ul{
    list-style-position: inside;
    columns: 2;
}
#escrito > li{
    font-size: 1.2vw;
    display: list-item;
    text-align:-webkit-match-parent;
    color: #0a0202;
}
ul{
    
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 10px;
}

footer{
   margin-bottom:9px;
   padding: 6px;
   background-color:#2b1c1b;
   width: 93vw;
}