/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  
    background-image: url("img/fondo.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    margin: 0;
}


/* hidden scrollbar */
html {
overflow: scroll;
overflow-x: hidden;
}
::-webkit-scrollbar {
width: 0; /* remove scrollbar space */
background: transparent; /* to make scrollbar invisible */
}
::-webkit-scrollbar-thumb {
background: transparent;
}

/* change highlight color */
::selection {
/* Change highlight background color */
background: #8C8585;
/* Change highlight text color */
color: #FFFFFF;
}

/* Variables */
:root {
    --header-image: url("img/header.png");
    --content: #43256E;
}

.glowtext {
position: absolute;
top: 200px;
left: 650px;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
-webkit-text-stroke-width: 1.5px;
-webkit-text-stroke-color: #ffffff;
-webkit-animation: glow 3.0s linear infinite;
animation: glow 3.0s linear infinite;
font-size:5em;
font-weight:bold;
}

@keyframes glow {
0% { text-shadow: 0 0 15px pink; }
50% { text-shadow: none; }
100% { text-shadow: 0 0 15px pink; }
}

@-webkit-keyframes glow {
0% { text-shadow: 0 0 15px pink; }
50% { text-shadow: none; }
100% { text-shadow: 0 0 15px pink; }
}

/* =========================
   FUENTES
   ========================= */

@font-face {
    font-family: Nunito;
    src: url("https://sadhost.neocities.org/fonts/Nunito-Regular.ttf");
}

@font-face {
    font-family: Nunito;
    src: url("https://sadhost.neocities.org/fonts/Nunito-Bold.ttf");
    font-weight: bold;
}

@font-face {
    font-family: Nunito;
    src: url("https://sadhost.neocities.org/fonts/Nunito-Italic.ttf");
    font-style: italic;
}

@font-face {
    font-family: Nunito;
    src: url("https://sadhost.neocities.org/fonts/Nunito-BoldItalic.ttf");
    font-style: italic;
    font-weight: bold;
}

@font-face {
src: url(https://dl.dropbox.com/s/pvxh5hqzpnhbzxe/Angelface%202.otf);
font-family: angelface;
}

@font-face {
font-family: roman;
src: url(https://dl.dropbox.com/s/f9cfrx4wyt13rwv/ROMANTIC.TTF);
}

@font-face {
src: url(https://dl.dropbox.com/s/1479f8x52y3z5u4/rainyhearts.ttf);
font-family: hearts;
}

@font-face {
src: url(https://dl.dropbox.com/s/kp4x66rhekt1fz5/AdabelleHandwriting-Regular.ttf);
font-family: adabelle;
}

@font-face {
src: url(https://dl.dropbox.com/s/ct0s037q78sao3f/Frighted.ttf);
font-family: Frighted;
}
  
@font-face {
    font-family: "Vamp";
    src: url("vampiress.ttf");
}

/* =========================
   AJUSTES GENERALES
   ========================= */

* {
    box-sizing: border-box;
}


/* =========================
   CONTENEDOR PRINCIPAL
   ========================= */

#container {
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 1.5);
}


/* =========================
   LINKS
   ========================= */

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


/* =========================
   HEADER
   ========================= */

#header {

    width: 100%;
    height: 253px;

    background-image: url("img/header.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}


/* =========================
   NAVBAR
   ========================= */

#navbar {
    height: 40px;
    background-color: #13092D;
    width: 100%;
    font-family: "rainyhearts";
}

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

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

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

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


/* =========================
   COLUMNAS
   ========================= */

#flex {
    display: flex;
}


/* =========================
   SIDEBARS
   ========================= */

aside {
    background-color: #241445;
    width: 200px;
    padding: 20px;
    font-size: smaller;
    font-family: "roman";
}

#leftSidebar {
    order: 1;
}

#rightSidebar {
    order: 3;
}


/* =========================
   CONTENIDO PRINCIPAL
   ========================= */

main {
    background-color: #000000;
    flex: 1;
    padding: 20px;
    order: 2;
    font-family: "hearts";
    font-size: 20px;
}


/* =========================
   FOOTER
   ========================= */

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


/* =========================
   TITULOS
   ========================= */

h2,
h3 {
    color: #ED64F5;
    font-family: "roman", bold;
    font-size: 40px;
    margin-bottom: 10px;

}

h1 {
    text-align: center;
    font-size: 70px;
    font-family: "vamp";
    font-weight: 100;
    color: #ffffff;
    margin: 20px;

}

p {
  color: #ffffff;
}

strong {
    color: #ED64F5;
}


/* =========================
   CAJAS
   ========================= */

.box {
    background-color: #13092D;
    border: 1px solid #ED64F5;
    padding: 10px;
}


/* =========================
   TOP BAR
   ========================= */

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


.blinkies {
    width: 100%;
    overflow: hidden;
}

.blinkies-track {
    display: flex;
    width: max-content;
    animation: blinkies-scroll 30s linear infinite;
}

.blinkies-set {
    display: flex;
    flex-shrink: 0;
}

.blinkies-set img {
    display: block;
    flex-shrink: 0;
}

@keyframes blinkies-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}




/* =========================
   RESPONSIVE / CELULAR
   ========================= */

@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;
    }
}



