*{
    margin: 0;
    padding: 0;
    font-family: "New Rocker", system-ui;
    font-weight: 400;
    font-style: normal;
}

body{
    background-image: url(imgs/teste.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}


h1{
    text-align: center;
    color: gold;
    text-shadow: 2px 2px rgb(85, 85, 85);
    font-size: 55px;
}

h2{
    text-align: justify;
    color: gold;
    text-shadow: 2px 2px rgb(85, 85, 85);
    font-size: 30px;
    

}

img{
    display: block;
    border: 1.5px solid white;
}

p{
    background: linear-gradient(90deg, rgb(24, 24, 24), rgb(48, 48, 48), rgb(24, 24, 24));
    color: white;
    padding: 10px;
    text-align: center;
    font-size: large;
}


.h2-direita{
    text-align: end;
}


article{
    display: flex;
    gap: 30px;
    align-items: center;

}


table{
    border-collapse: collapse;
    background-color: rgba(255, 255, 255, 0.72);
    margin: 30px auto;
    
}

td{
    color: black;
    border: 1.5px solid gold;
    padding: 10px;
    text-align: center;
}

thead{
    background: linear-gradient(90deg, rgb(24, 24, 24), rgb(48, 48, 48), rgb(24, 24, 24));
    border-collapse: collapse;
    

}

th{
    color: white;
    border: 1.5px solid gold;
    text-align: center;
}

footer{
    text-align: center;
    font-weight: 400;
    font-style: normal;
    background: linear-gradient(90deg, rgb(24, 24, 24), rgb(48, 48, 48), rgb(24, 24, 24));
}

header{
    background: linear-gradient(90deg, rgb(24, 24, 24), rgb(48, 48, 48), rgb(24, 24, 24));
    position: sticky;
    top: 0;
}

header ul{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5%;
    list-style-type: none;
    font-size: 225%;
    padding: 5px;


}
a{
    color: gold;
    text-decoration: none;
}
a:hover{
    background-color: rgba(59, 59, 59, 0.72);
}

a:visited{
    color: red;
}

header a{
    text-decoration: none;
    color: silver;
    position: relative;
}

header a:visited{
    color: silver;

}
header li{
    cursor: pointer;
}

header a:hover{ 
    top: -3px;
    
}

header a:active{
    font-size: 95%;
}

article img:nth-child(2n+1){
    border: 1.5px solid black;
}

article img, article p{
    border-radius: 5px;
}

header img{
    border: none;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 5%;
    
}

.active{
    background-color: rgba(0, 0, 0, 0.72);
    padding-left: 2px;
    padding-right: 2px;

}

.active:hover{
    background-color: rgba(0, 0, 0, 0);
}

img{
    max-width: 650px;
}

input{
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#easter-egg{
    opacity: 0;
    transition: all 1s ease;
    height: 60px;
    float: right;
    margin-top: 20px;
}

#easter-egg:hover{
    opacity: 1;
}

#p-egg{
    margin-top: 85px;
}

iframe{
    display: block;
    margin: 30px auto;
    width: 70vw;
    height: 60vw;
}

@media(max-width: 987px) {


    article {
      display: flex;
      flex-direction: column;

    }

    
  }

  @media(max-width: 987px) {


    article {
      display: flex;
      flex-direction: column;

    }
    header ul{
        flex-direction: column;
    }
}


    @media(min-width: 986px) and (max-width: 245) {


        article {
          display: flex;
          flex-direction: column;
    
        }

        p{
            min-width: 200px;
        }

       
    
        
      }
  
  

