@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

/* Gerais */
:root {
    --color01: #0D0D0D;
    --color02: #733702;
    --color03: #A65D03;
    --color04: #F2A20C;
    --color05: #F2BB13;

    --font-default: "Noto Sans";
}

body
{
    margin: 0px;
    font-family: var(--font-default);
    background: linear-gradient(to bottom, var(--color03), var(--color02));
}

/* Topo da Página */
.title
{
    font-weight: 750;
    text-shadow: -2px 2px 0px black;
}

header
{
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    margin: 0px;
    gap: 20px;
    background-color: var(--color02);
    box-shadow: 0px 0px 0px 3px rgba(0, 0, 0, 1);
}

header p
{
    margin: 0px;
    color: white;
    font-size: 2em;
    font-weight: 600;
}

nav
{
    margin-top: 8px;
}

nav a 
{
    text-shadow: -1.5px 1.5px 0px black;
    color: var(--color04);
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 550;
    padding: 5px 10px;
    margin: 8px 5px 0px 5px;
}

nav a:hover
{
    background-color: var(--color01);
    border-radius: 10px;
    color: var(--color05);
}

.logo {
    width: 80px;
    height: auto;
}

.nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Corpo da Página */
main {
    color: black;
    text-align: center;
    font-size: 1.1em;
    padding: 25px;
    margin: 0 auto;
    max-width: 1000px;
    background-color: white;
    box-shadow: 0px 0px 0px 3px rgba(0, 0, 0, 1);
}

main h1
{
    display: flex;
    justify-content: center;
    font-weight: 800;
}

.link-a
{
    font-weight: 800;
    color: rgb(0, 160, 0);
    text-decoration: none;
}

.link-a:hover
{
    color: rgb(0, 255, 0);
    text-decoration: underline;
}

/* Rodapé */
footer {
    color: white;
    text-align: center;
    font-size: 0.55em;
    padding: 20px 10px 10px 10px;
    background-color: var(--color01);
    box-shadow: 0px 0px 0px 3px rgba(0, 0, 0, 1);
}

footer div {
    font-size: 1.9em;
    font-weight: 600;
}

footer p {
    font-size: 1.5em; 
}

footer a {
    text-decoration: none;
    color: white; 
}

footer a:hover {
    color: var(--color05);
    cursor: pointer;
}

/* Responsividade */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .nav-links {
        flex-direction: column;
    }

    nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    nav a {
        margin: 5px 8px;
        font-size: 1.25em;
    }

    .logo {
        width: 60px;
    }

    header p {
        font-size: 1.8em;
    }
}