* {
    box-sizing: border-box;
}

html {
    background-color: black;
    margin: auto;
}

body {
    /* General applicable settings BODY*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background-color: rgb(24, 24, 24);
    border-top-style: double;
    border-radius: 25px;

    width: 900px;
    margin: auto;

    header,
    main,
    footer {
        display: flex;

        nav {
            display: flex;
            /* justify-content: space-around; */
            font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
        }
    }
}

h1 {
    display: none;
}

h2 {
    margin: 5px;
}

h5 {
    text-transform: uppercase;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0 0 5px 0;
    font-size: 10em;
}

p {
    margin-bottom: 5px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

/* END General applicable settings */

header {
    display: flex;
    flex-direction: column;
    /* justify-content: space-around; */
    align-items: center;
    width: 100%;
    border: 3px solid black;

    .temp-warning {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: yellow;
        height: 50px;
        width: 100%;
        margin: 0 10px 20px 10px;
        border-radius: 10px;

        .section {
            display: flex;
            align-self: center;
            margin: 100%;
        }

        p {
            font: black;
        }
    }

    nav {
        width: 900px;
        height: 75px;
        justify-content: space-evenly;
        align-items: center;
        border-radius: 15px 15px 0 0;
        background-color: black;
        border-top: 10px solid red;
        border-bottom: 5px solid red;
        color: whitesmoke;
        text-indent: none;
        list-style-type: none;

        li {
            display: inline-block;
            justify-content: space-between;
            text-decoration-style: unset;
            list-style-type: none;
            width: 10em;
        }

        a {
            color: whitesmoke;
            text-decoration-line: none;
        }
    }

    .menu-option:hover {
        border-color: red;
        border: 5px 0 1px 0;
        border: 5px solid red;
        padding: 21px 5px 21px 5px;
        font-family: 'Times New Roman', Times, serif;
    }


    img {
        display: block;
        object-fit: cover;
        border-radius: 15px;
        width: 100px;
    }


}


main {
    display: flex;
    object-fit: cover;
    overflow: auto;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    background-color: black;
    margin: 10px;
    min-height: 500px;
    padding: 10px;
    border-radius: 15px;
    color: rgb(187, 186, 186);

    section {
        background: rgb(24, 24, 24);
        border-radius: 15px;
        padding: 10px;
        margin-bottom: 10px;
    }

}


footer {
    color: rgb(187, 186, 186);
    border-top: 5px solid red;
    border-bottom: 10px solid red;
    border-radius: 0 0 15px 15px;
    background-color: black;
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;

    ul {
        list-style-type: none;
        text-decoration: none;
        padding-left: 0;
    }

    .row {
        width: calc(100% / 3);
        margin: 10px 10px;

        h5 {
            font-size: small;
        }
    }

    .contact-p {
        flex-direction: row;
        display: flex;
        font-size: smaller;
        /* columns: 2; */
        font-style: italic;
    }

    .contact-paragraph {
        /* width: calc(100% / 2); */
        margin: 2px;
    }

    li.fa-brands {
        color: purple;
        margin: 5px;
    }

    li.icon-pix {
        display: inline-block;
        padding: .1em;
    }

    li.icon-pix:hover {
        border: 1px solid green;
        align-self: flex-start;
        border-radius: 50%;
        padding: .2em;
    }
}

.brands-list,
.list-icons,
.notes-info {
    display: flex;
    align-self: flex-start;

}

.brands-info {
    width: 50px;

    .brands-list {
        font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    }

    .brand:hover {
        font-family: Arial Narrow Bold, sans-serif;
    }
}

.contact-info {
    width: 40%;
}

.social-info {
    width: 25%;

}

.notes-info {
    width: auto;
    align-self: flex-start;
    font-size: xx-small;

    ul {
        list-style-type: lower-roman;
        font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
        padding-left: 0;
    }

    .fa-brands:hover {
        border: 3px solid green;
        border-radius: 50%;
        /* padding: 0; */
        font-size: large;
    }
}