/* user styles */
/* styles are what change the color and sizes of stuff on your site. */

/* these are variables that are being used in the code
these tended to confuse some people, so I only kept 
the images as variables */

:root {
    --header-image: url('https://sadhost.neocities.org/images/layouts/wp.jpeg');
    --body-bg-image: url('/img/fondop2.gif');

    /* colors */
    --content: #43256E;
    
}

@font-face {
    font-family: basic;
    src: url(/font/Krikikrak-Regular.otf);
}
@font-face {
    font-family: medium;
    src: url(/font/Krikikrak-Bold.otf);
}

p, li{
    font-family: basic;
    color: #ffffff;
}
h1{
    font-family: medium;
    text-align: center;
    font-size:30px;
}
h2{ 
    font-family: medium;
    text-align: center;
    font-size:20px;
}

html, body 
{
    cursor: url("/cursor/wii-pointer-blue.cur"), default;
    /* just change the cursor.ico path to your location */
}

ul.a {
    list-style-type: none;
    margin-left: 0;
}

img.pf{
    float:left;
    margin-right: 35;
    border-style: double;
    border-width: 5;
    color: #8b93db;
}

ul.a li:before {
    content: '☆';
    color: rgb(255, 255, 255);
    display: inline-block;
    width: 23px;
    margin-left: -23px;
    font-family: inherit;
    font-weight: normal;
}

a.click {
    width: 300px;
    transition: transform 0.5s ease; 
    float:unset;

}

a.click:hover{
    cursor: url(/cursor/wii-grab.cur), default;
    zoom:110%;
    
}

a.neg{
    font-family: medium;
}

a.menu {
    text-align: center;
    line-height:20px; 
    border-bottom: 1px white;
    border-style:double;
    color:#000000;
    display:block;
}
a.menu:hover{
    font-color: #000000;
    cursor: url(/cursor/wii-grab.cur), default;
    background-color:#fff;
}
    
body {
    background-color: #8563ff;
    /* you can delete the line below if you'd prefer to not use an image */
    background-position: center 25%;
    color: #000000;
    background-image: url(/img/fondop2.gif);
    background-attachment: fixed;
}

.button {
    background-color: rgb(255, 210, 251);
    color: #8b93db;
    border: 5px;
    border-style: double;
    padding: 10px 24px;
    text-align: center;
    display: inline-block;
    font-size: 20px;
    cursor: crosshair;
    font-family: medium;
}

.button:hover{
    background-color:#fff;
    color: rgb(255, 210, 251);
    border-style: dotted;
    cursor: url(/cursor/wii-grab.cur), default
}

* {
    box-sizing: border-box;
}

/* below this line is CSS for the layout */

/* this is a CSS comment
to uncomment a line of CSS, remove the * and the /
before and after the text */

/* the "container" is what wraps your entire website */
/* if you want something (like the header) to be Wider than
the other elements, you will need to move that div outside
of the container */
#container {
    max-width: 900px;
    /* this is the width of your layout! */
    /* if you change the above value, scroll to the bottom
    and change the media query according to the comment! */
    margin: 0 auto;
    /* this centers the entire page */
    border: 2px solid black;
    
}

/* the area below is for all links on your page
EXCEPT for the navigation */
#container a {
    color: hsl(0, 0%, 100%), 100%, 84%;
    /* if you want to remove the underline
    you can add a line below here that says:
    text-decoration:none; */
}

#header {
    width: 100%;
    background-color: #ffffff;
    /* header color here! */
    height: 150px;
    /* this is only for a background image! */
    /* if you want to put images IN the header, 
            you can add them directly to the <div id="header"></div> element! */
    background-image: var(--header-image);
    background-size: 100%;
}

/* navigation section!! */
#navbar {
    height: 100px;
    background-color: #f4c6d9;
    background-image: url(img/fondo3p.gif);
    background-size: 300px 150px;
    /* navbar color */
    width: 100%;
}

#navbar ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style-type: none;
    justify-content: space-evenly;
}

#navbar li {
    padding-top: 10px;
}

/* navigation links*/
#navbar li a {
    color: #ffffff;
    /* navbar text color */
    font-weight: 800;
    text-decoration: none;
    /* this removes the underline */
}

/* navigation link when a link is hovered over */
#navbar li a:hover {
    color: #000000;
    text-decoration: underline;
}

#flex {
    display: flex;
}

/* this colors BOTH sidebars
if you want to style them separately,
create styles for #leftSidebar and #rightSidebar */
aside {
    border-top: 2px solid black;
    border-bottom: 2px solid black;
    background-color: #8b93db;
    width: 200px;
    padding: 20px;
    font-size: smaller;
    /* this makes the sidebar text slightly smaller */
}

/* this is the color of the main content area,
between the sidebars! */
main {
    background-color: #b3b7d8;
    flex: 1;
    padding: 20px;
    order: 2;
    border-top: 2px solid black;
    border-bottom: 2px solid black;
}

/* what's this "order" stuff about??
allow me to explain!
if you're using both sidebars, the "order" value
tells the CSS the order in which to display them.
left sidebar is 1, content is 2, and right sidebar is 3! */

*/ #leftSidebar {
    order: 2;
}

#rightSidebar {
    order: 1;
}

footer {
    background-image: url(img/fondo3p.gif);
    /* background color for footer */
    width: 100%;
    height: 40px;
    padding: 10px;
    text-align: center;
    /* this centers the footer text */
}

h1,
h2,
h3 {
    color: #ffffff;
}

h1 {
    font-size: 25px;
}