* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: white;
}

header.topo {
    display: flex;
    gap: 20px;
    flex-direction: row;
    align-items: center;
    padding: 20px;
    background-color: black;
}

#logo {
    border-radius: 50%;
}

header .topo-cabeçalho {
    color: white;
}

header .topo-paragrafo {
    padding-top: 20px;
    font-size: small;
}

main {
    background-color: black;
    color: white;
    padding: 30px;
    font-size: larger;
}

section.links {
    border: 0.5rem outset gray;
    border-radius: 12px;
    background-color: white;
    color: black;
    display: flex;
    padding: 20px;
    flex-direction: column;
}

.links, .link {
    justify-content: baseline;
}

.link, .links a {
    color: black;
    text-decoration: none;
    padding: 5px 10px;
}

.link, .limks a:hover {
    text-decoration: underline;
}

footer {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background-color: black;
    color: white;
}

footer .desenvolvedor a {
    color: gray;
    text-decoration: none;
}

footer .desenvolvedor a:hover {
    text-decoration: underline;
}

footer .desenvolvedor p {
    font-size: small;
    color: gray;
}