:root {
    --header-image: url('../images/background_flowers.jpg');
    --body-bg-image: url('../images/blinkie_stars.gif');

    /* colors */
    --content: #43256E;
}

/* =========================
   Fonts
   ========================= */

@font-face {
  font-family: 'JetBrains Mono';
  src: url('../fonts/JetBrainsMono/JetBrainsMono-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'JetBrains Mono';
  src: url('../fonts/JetBrainsMono/JetBrainsMono-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'JetBrains Mono';
  src: url('../fonts/JetBrainsMono/JetBrainsMono-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'JetBrains Mono';
  src: url('../fonts/JetBrainsMono/JetBrainsMono-BoldItalic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
}


/* =========================
   Base styles
   ========================= */

* {
    box-sizing: border-box;
}

body {
    font-family: 'JetBrains Mono', monospace;
    font-size: 18px;
    margin: 0;
    padding: 0;
    color: white;
    
    cursor: url("../images/cursors/cursor_ghost_pink_ribbon.webp"), auto;

    background-image: var(--body-bg-image);
    background-size: auto;
    background-position: top left;
    background-repeat: repeat;
    background-attachment: fixed;
    background-color: #444444;
}

a, button {
  cursor: url("../images/cursors/cursor_ghost_pink_ribbon.webp"), pointer;
}
    

h1, h2, h3 {
    font-family: 'JetBrains Mono', monospace;
    color: #F0D6C4;
}

h1 { font-size: 24px; }
h2 { font-size: 22px; }
h3 { font-size: 20px; }

strong {
    color: #D2D8C9;
}

/* =========================
   Layout
   ========================= */

#container {
    max-width: 1200px;  /* teste 1100, 1200 ou 1280 */
    margin: 0 auto;
}



#container a {
    color: #444444;
    font-weight: bold;
}

/* =========================
   Header
   ========================= */

#header {
    width: 100%;
    height: 150px;
    background-color: #D2D8C9;
    background-image: var(--header-image);
    background-size: cover;
    background-position: center;
}

/* =========================
   Navbar
   ========================= */

#navbar {
    height: 40px;
    background-color: #181513;
    width: 100%;
}

#navbar ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    justify-content: space-evenly;
}

#navbar li {
    padding-top: 10px;
}

#navbar li a {
    color: #F0D6C4;
    font-weight: 800;
    text-decoration: none;
}

#navbar li a:hover {
    color: #a49cba;
    text-decoration: underline;
}

/* =========================
   Main layout
   ========================= */

#flex {
    display: flex;
}

aside {
    background-color: #212121;
    flex: 0 0 320px;
    padding: 20px;
    font-size: smaller;
}


main {
    background-color: #212121;
    flex: 1;
    min-width: 420px;
    padding: 20px;
    order: 2;
    font-size: 16px;
}


#leftSidebar {
    order: 1;
}

#rightSidebar {
    order: 3;
}

/* =========================
   Extras
   ========================= */

.box {
    background-color: #181513;
    border: 1px solid #D2D8C9;
    padding: 10px;
}

footer {
    background-color: #181513;
    width: 100%;
    height: 40px;
    padding: 10px;
    text-align: center;
}

#topBar {
    width: 100%;
    height: 30px;
    padding: 10px;
    font-size: smaller;
    background-color: #13092D;
}

/* =========================
   Responsive
   ========================= */

@media only screen and (max-width: 800px) {
    #flex {
        flex-wrap: wrap;
    }

    aside {
        width: 100%;
    }

    main {
        order: 1;
    }

    #leftSidebar {
        order: 2;
    }

    #rightSidebar {
        order: 3;
    }

    #navbar ul {
        flex-wrap: wrap;
    }
}

/* =========================
   Blinkies
   ========================= */

.blinkies {
  text-align: center;
  margin: 10px 0;
}

.blinkies img {
  margin: 2px;
}


/* =========================
   Profile box
   ========================= */

.profile {
    text-align: center;
}

.profile-pic {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 2px solid #000;
    margin-bottom: 10px;
}

.profile-name {
    margin: 5px 0;
    font-size: 1.1em;
}

.profile-desc {
    font-size: 0.9em;
    line-height: 1.4;
    margin-bottom: 10px;
}

.profile-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.profile-links li {
    margin: 3px 0;
}

.profile-links a {
    text-decoration: none;
    font-size: 0.9em;
}
