@charset "UTF-8";

:root{
    --destaque: #ba89ff;
    --destaque2: #ff69b4;
    --destaque3: #daa520;
    --destaque4: #bc53f3;
    --corfonte: #000000;
    --sombra: #00000072;
}

body {
    margin: 0;
    background-size: 1458px;
    background-position: center;

    font-family: active, sans-serif;
}

.images {
    margin: auto;
    display: flex;
    justify-content: center;
    max-width: 900px;
    width: 100%;
    border: 5px solid var(--destaque);
    box-shadow: 5px 4px 8px var(--corfonte);
}

.topMenu {
    background-image: linear-gradient(90deg, var(--destaque), var(--destaque2));
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 135px;
    position: fixed;
    z-index: 3;
    top: 0px;
    left: 0px;
    width: 100%;

    .home {
        font-weight: 400;
        font-style: normal;
        display: flex;
        justify-content: space-around;
        font-size: 48px;
    }

    .imgHome {
        margin-top: 5px;
        width: 80;
    }

    a {
        color: var(--corfonte);
        text-decoration: none;
    }

    a:hover {
        text-decoration: underline;
        color: var(--destaque3);
        text-shadow: 2px 2px 4px var(--corfonte);
    }
}

.topMenuSpacing {
    height: 132px;
}

.leftMenu {
    height: 460px;
    width: 320px;
    margin-top: 50px;
    margin-left: 30px;
    border: 5px solid var(--destaque4);
    box-shadow: 5px 4px 8px var(--corfonte);
    position: fixed;

    a {
        color: var(--corfonte);
        text-decoration: none;
    }

    a:hover {
        text-decoration: underline;
        color: var(--destaque3);
        text-shadow: 2px 2px 4px var(--corfonte);
    }

    ul {
        font-size: 28px;

        li {
            margin-left: 10px;
        }

        h2 {
            font-weight: 400;
            margin-bottom: 10px;
            margin-top: 10px;
        }
    }
}

.contents {
    height: auto;
    max-width: 1347px;
    margin-top: 50px;
    margin-left: 400px;
    font-size: 28px;
    text-align: justify;

    section {
        scroll-margin-top: 150px;
        scroll-margin-left: 400px;
    }

    h1 {
        text-align: center;
        font-weight: 400;
        background-color: var(--destaque4);
    }

    p {
        margin: 5px;
        text-indent: 30px;
    }

    h2 {
        font-weight: 400;
        text-decoration: underline var(--destaque4);
    }

    ul {
        li {
            margin-bottom: 10px;
        }
    }
}

.baseboard {
    background-image: linear-gradient(90deg, var(--destaque), var(--destaque2));
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 70px;
    width: 100%;
    margin-top: 50px;

    h2 {
        font-weight: 400;
        font-style: normal;
        display: inline;
        font-size: 48px;
        margin: 80px;
    }

    a {
        font-size: 30px;
        color: var(--corfonte);
        text-decoration: none;
    }

    a:hover {
        text-decoration: underline;
        color: var(--destaque3);
        text-shadow: 2px 2px 4px var(--corfonte);
    }
}