html{
    scroll-behavior: smooth;
}
body{
    background-color: black;
    border-style: solid;
    font-family: "Press Start 2P", system-ui;
}
header{
    background-color: black;
    border-width: 5px;
    border-color: green;
    border-style: solid;
}
main{
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}
.logo img {
    width: 100px !important;
    animation: logogiro 4s linear infinite;
}
ul{
    background-color: black;
    color: green;
    border-width: 5px;
    border-color: green;
    border-style: solid;
    overflow: hidden;
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow-x: auto;
}
ul::-webkit-scrollbar{
    color: black;
    height: 10px;
    margin-bottom: 10px;
    margin-top: 100000px;
}
ul::-webkit-scrollbar-thumb{
    background-color: green;
    border-radius: 10px;
}
.capalegalnavbar{
    background-color: black;
    color: green;
    border-width: 5px;
    border-color: green;
    border-style: solid;
    overflow: hidden;
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow-x: auto;
}
.capalegalnavbar::-webkit-scrollbar{
    color: black;
    height: 10px;
    margin-bottom: 10px;
    margin-top: 100000px;
}
.capalegalnavbar::-webkit-scrollbar-thumb{
    background-color: green;
    border-radius: 10px;
}
li{
    padding: 8px;
    color: black;
    border-style: solid;
    background-color: green;
}
li a:link{
    color:black;
}
li a:visited{
    color:black;
}
main{
    background-color: black;
    color: green;
    border-width: 5px;
    border-color: green;
    border-style: solid;
}
section{
    background-color: black;
    color: green;
    border-width: 2px;
    border-style: solid;
    border-top-color: green;
}
footer{
    background-color: black;
    color: green;
    border-width: 5px;
    border-color: green;
    border-style: solid;
}
.npc img {
    width: 300px;
}
.npc{    
    border-bottom: solid;
    border-bottom-color: green;
}
tr:nth-child(even) {
background-color:green;
color:black;
border: 1px solid black;
}
td, th{
    text-align: center;
    border: 1px solid green;
}
body, header, .navbar, main, section, footer, table{
    border-collapse: collapse;
}
table{
    display: block;
    width: 100%;
    overflow-x:auto
}
table::-webkit-scrollbar{
    color: black;
    height: 30px;
}
table::-webkit-scrollbar-thumb{
    background-color: green;
    border-radius: 10px;
}
.col-3 img{
    width: 25%;
}
.col-3 p{
    font-size: 1rem;
    text-align: center;
    width: 25%;
}
.linha{
    display: flex;
    flex-flow: row wrap;
    margin-left: auto;
    margin-right: auto;
}
h1,h2{
    line-height: 3;
}
@keyframes logogiro {
    from{
        transform: rotateY(0deg);
    }
    to{
        transform: rotateY(360deg);
    }
}
.footer_link a:link{
    color:green;
}
.footer_link a:visited{
    color:green;
}
.local img{
    float: left;
    margin-bottom: 100px;
    
}
@media only screen and (max-width: 600px) {
    ul{
        display: block;
    }
    main{
        width: auto;
    }
    .local img{
        float: none;
        width: 440px;
        width: 485px;
    }
    .text{
        font-size: 6px;
    }
    .img-container .capalegal img{
        width: calc(95% - 20px);
    }
    .inpagenavbar ul{
        display: flex;
    }
}
.img-container{
    position:relative;
    display:inline-block;
}
.text{
    position: absolute;
    padding: 10px;
    border: 1px solid black;
    color: black;
}
.top-left{
    top: 10px;
    left: 10px;
}
.top-right{
    top: 10px;
    right: 10px;
}
.bottom-left{
    bottom: 10px;
    left: 10px;
}
.bottom-right{
    bottom: 10px;
    right: 10px;
}
.center{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.capalegal img{
    width: 1200px;
}
div.inpagenavbar{
    position: sticky;
    top: 0;
}
fieldset{
    margin-bottom: 20px;
    border-color: green;
}
input{
    margin-bottom: 10px;
    background-color: black;
    color: green;
    border: green solid;
    outline: none;
}
@keyframes grow {
    0% {
        width: 200px;
    }
    100% {
        width: 300px;
    }
}

@keyframes shrink {
    0% {
        width: 300px;
    }
    100% {
        width: 200px;
    }
}
input:focus {
    animation: grow 0.3s forwards;
}
input:not(:focus) {
    animation: shrink 0.3s forwards;
}
hr{
    border-color: green;
}
select{
    margin-bottom: 10px;
    background-color: black;
    color: green;
    border: green solid;
}
select::-webkit-scrollbar{
    color: black;
    height: 30px;
}
select::-webkit-scrollbar-thumb{
    background-color: green;
    border-radius: 10px;
}
button{
    background-color: green;
    border: none;
}