body {
    color: white;
    background-color: black;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}

/* ====== NAVBAR ====== */
nav {
    display: flex;
    justify-content: flex-start; /* alinha todo o conteúdo à esquerda */
    align-items: center;
    padding: 0px 40px;
    position: fixed; /* fixa no topo */
    top: 0;
    left: 0;
    width: 100%;
    background-color: black;
    z-index: 1000;
}

ul {
    display: flex;
    align-items: center;
    list-style-type: none;
    gap: 30px; /* espaço entre logo e links */
    margin: 0;
    padding: 0;
}

ul img {
    width: 150px;
    height: auto;
    margin-right: 20px; /* espaço entre o logo e os links */
}


a {
    color: white;
    text-decoration: none;
}

nav a:hover {
    color: purple;
}

/* ====== HEADER ====== */
header {
    text-align: center;
    margin-top: 120px; /* espaço para não ficar embaixo do navbar fixo */
}

header img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 5px solid rgb(173, 42, 190);
    object-fit: cover;
}

/* ====== TEXTOS ====== */
h1 {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: purple;
    margin-top: 20px;
}

h2 {
    font-family: Arial, Helvetica, sans-serif;
    color: rgba(119, 24, 156, 0.801);
}

/* ====== CONTAINER ====== */
.container {
    padding: 0px 50px;
}

/* ====== FOOTER ====== */
footer {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

footer a {
    margin: 15px;
    text-align: center;
}

footer img {
    width: 40px;
    height: 40px;
}

footer p:hover{
    color: purple;
}
