@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {

    margin: 0px;
    padding: 0px;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    width: calc(100vw - scrollbar-width);
    /* min-height: 100vh; */
}

header {
    position: fixed;
    width: 100%;
    height: 90px;
    background-color: #333;
    color: rgb(245, 181, 85);
    z-index: 1;
}

nav {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 2px 20px;

    & h1 {
        font-size: 2rem;
        margin: 5px 0px 0px 0px;
    }

    ul {
        margin: 5px;
        list-style-position: inside;
        list-style: none;
        display: flex;
        justify-content: space-between;
        align-items: center;

        & li {
            margin-right: 10px;

            & a {
                font-size: 1.2em;
                font-weight: bolder;
                color: rgb(245, 181, 85);
                text-decoration: none;
                &:hover {
                    transition-duration: 0.7s;
                    color: #d82a2a;
                }
            }
        }
    }
}

img {
    width: calc(100% - 20px);
    border-radius: 20px 20px 0px 0px;
    padding: 10px;
}

main {
    position: relative;
    margin-top: 90px;
    display: flex;
    width: calc(100% - 10px);
    min-height: calc(100vh - 150px);
    padding: 5px;
    background-color: #8a6e6e;
    justify-content: center;
    align-items: stretch;
}

section,
aside {
    min-height: 100%;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
}

section {
    font-family: 'Poppins', sans-serif;
    width: 70%;
    margin-right: 2.5px;
    background-color: #3f3f3f;
    color: white;
    & a {
        color: white;
        text-decoration: none;
        &:hover {
            transition-duration: 0.7s;
            color: rgb(245, 181, 85);
        }
    }

    & h1 {
        text-align: center;
    }

    & p {
        margin: 0px 50px 50px 50px;
        text-align: justify;
    }

    & span {
        margin-left: 50px;
        text-align: start;
    }

    & span::first-letter,
    p::first-letter {
        font-size: 1.5em;
    }
}

aside {
    width: 30%;
    margin-left: 2.5px;
    align-items: center;
    background-color: #5a5454;
    color: rgb(245, 181, 85);

    & ul {
        list-style: none;
        padding: 0px;
        margin: 0px;
        width: 90%;
        text-align: center;

        & a {
            width: 100%;
            text-decoration: none;
            color: white;
            font-size: 1.2em;

            & li {
                padding: 5px;
                margin: 5px;
                background-color: #3f3f3f;
                color: white;
                border-radius: 10px;

                &:hover {
                    transition-duration: 0.4s;
                    color: #8a6e6e;
                }
            }

            & img {
                border-radius: 15px;
            }
        }
    }
}

footer {
    bottom: 0;
    width: 100%;
    height: 50px;
    background-color: #333;
    color: rgb(245, 181, 85);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.75em;
}