:root {
  --primary-color: rgb(68, 54, 127);
  --secondary-color: #b31fa6;
  --black: #000000;
  --white: #ffffff;
  --font-main: bold 15pt Courier;      
  --border: 16px;
}

body{
    background: var(--black);
    font: var(--font-main);
    text-align: center;
}

header{
    color: var(--white);
    text-align: center;
}

section{
    background: var(--primary-color);
    border-radius: var(--border);
    padding: var(--border);
    width: 512px;
    max-width: 96%;
    margin: auto;
}

footer{
    color: var(--white);
    text-align: center;
}

.botoes{
    display: flex;
    justify-content: space-around;
    margin-top: var(--border);
}

.botoes a{
    text-decoration: none;
    padding: var(--border) var(--border)/2;
    border: 1px solid var(--white);
    border-radius: var(--border);
    background-color: var(--white);
    color: var(--black);
    margin: var(--border) var(--border);
    transition: background-color 0.8s ease;
    text-align: center; 
    width: 128px;
}

.botoes a:hover{
    background-color: var(--primary-color);
    color: var(--white);
}

.content{
    color: var(--white);
}

.content ul li{
    text-align: center;
}

.content ul li img{
    display: block;
    margin: 0 auto;
}

.content ul{
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
  
.content li{
    margin: var(--border) var(--border) var(--border) var(--border);
}


.bio{
    color: var(--white); 
    margin-bottom: var(--border);
    margin-top: var(--border); 
}

@media (max-width: 512px) {
    .botoes {
        flex-direction: column;
        align-items: center;
    }

    .botoes a {
        width: 100%;
        text-align: center;
        margin: var(--border) var(--border); 
    }
}

.pdf a {
    color: var(--black);
    text-decoration: none;
}

.pdf a:hover {
    text-decoration: underline;
}

#pdf_container {
    display: none;
    margin-top: var(--border);
}


