@charset "utf-8";

body {
    margin: 0;
    padding: 0;
}

header {
    min-height: 15vh;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

nav {
    display: flex;
    justify-content: center;
    background: linear-gradient(120deg, rgb(56, 19, 136), rgb(50, 134, 230));
    width: 100%;
    margin: 0;
    color: white;
}

nav#menu ul {
    display: flex;
    gap: 40px;
    font-size: 20px;
}

nav a {
    position: relative;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.920);
    text-decoration: none;
}

a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.9);
    transition: width 0.3s ease;
}

a:hover::after {
    width: 100%;
}

hgroup {
    display: flex; /*h1 e h2 lado a lado*/
    justify-content: center; /* centro horizontal*/
    align-items: center; /* centro vertical*/
    flex-wrap: wrap;
    margin: 10px 0px;
    gap: 20px;
    padding: 5px;
}

h1, h2 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    letter-spacing: 0.08em;
    margin: 0;
}

p {
    font-family: 'Roboto', 'Arial', sans-serif;
    line-height: 1.6;
    font-size: 20px;
    color: #333;
}

footer {
    margin-top: 40px;
    padding: 20px 0;
    background: linear-gradient(120deg, rgb(56, 19, 136), rgb(50, 134, 230));
    justify-items: center;
}

footer p, a {
    color: rgba(255, 255, 255, 0.920);
}

footer p {
    margin: 0;
}

footer a {
    position: relative;
    text-decoration: none;
}