/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 15px;
}

h1{
    font-size: 20px;
}

h2{
    font-size: 18px;
}

/* Estilo geral */
body {
    font-family: "Comic Sans MS", cursive, sans-serif;
    background-color: black;
    color: black;
    min-height: 100vh;
    background-image: url(/image/myc.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin:auto;
    background-image: url("/../image/papyrus.png");
    border-radius: 12px;
    padding: 5.5px;

}

main{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 60px auto;
    border-radius: 12px

}

.titulo{
    background-image: url("/../image/papyrus.png");
    border-radius: 12px;
    padding: 5.5px;

}

.papyrus{
    margin: 10px;
    background-image: url("/../image/papyrus.png");
    border-radius: 12px;
    padding: 5.5px;
    width: 50%;

}

.menu{
    display: flex;
    position:fixed;
    flex-direction: column;
    width: fit-content;
    height: fit-content;
    margin: 1px;
    background-image: url("/../image/papyrus.png");
    border-radius: 12px;
    padding: 5.5px;
    margin-top: 55px;

}

/* Estilo básico */
a {
    color: black;               /* Azul padrão */
    text-decoration: none;        /* Sem sublinhado */
    font-weight: 500;             /* Peso médio */
    transition: color 0.2s;       /* Animação suave */
  }
  
  /* Estados interativos */
  a:hover,
  a:visited:hover,                /* Mantém a cor no hover mesmo após visita */
  a:active,
  a:visited:active {              /* Mantém a cor no clique */
    color: white;               /* Laranja (ou cor que você preferir) */
  }

.barra-lateral-direita {
    position: fixed;
    right: 20px;
    width: 250px;
    background-image: url("/../image/papyrus.png");
    border-radius: 12px;
    padding: 20px;
}