main {
    padding: 20px;
}
table,th,td {
  border: 1px solid black;
  border-collapse: collapse;
  margin-top: 20px;
}
th,td {
  padding: 5px;
}
h1 {
    font-family: 'Delius Swash Caps', cursive;
    text-align: center;
    padding-top: 10px;
}
a {
    text-decoration: none !important; /* no underline */
    color: black !important;
}
article {
    overflow-y: auto;
    max-height: 300px;
}
.popup {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}
.popup.ativo {
    display: flex;
}
.popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}
.botao-fechar {
    display: inline-block; 
    margin-top: 10px; 
    padding: 5px 10px; 
    color: #000; 
    text-decoration: none; 
    border-radius: 3px;
}
#searchButton {
    font-family: 'Fredoka', sans-serif;
    display: inline-block;
    color: white;
    background-color: rgb(213, 154, 231);
    border: none;
    padding: 5px 10px;
    margin-top: 10px;
    border-radius: 999px;
    width: 100px;
    text-align: center;
    text-decoration: none;
}