/* Variables */
:root {
  --header-image: url('https://sadhost.neocities.org/images/layouts/wp.jpeg');
  --body-bg-image: url(../Imagenes/fondos/kao_uwarn_blue.gif);
  --content: #253a6e;
}

/* Fuente personalizada */

@font-face {
  font-family: Fredoka;
  src: url(../font/Fredoka.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;
}*/

/* Estilos generales */
body {
  font-family: 'Nunito', sans-serif;
  margin: 0;
  background-color: #08031A;
  background-size: 65px;
  color: #fceaff;
  background-image: var(--body-bg-image);
  font-family: Fredoka;
}

.Icono_yo{
  width:100%;
  border-radius: 50%;
  border: 6px solid #f4b5c1;
}

* {
  box-sizing: border-box;
}

.ds-cartuchos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px auto;
  padding: 10px;
  color: #1e0f57;
}

.ds-cartuchos a {
  display: inline-block;
  width: 100px;
  height: 100px;
  background-color: #a6c9f2;
  border: 4px solid #486a9c;
  border-radius: 10px;
  font-family: Fredoka;
  text-align: center;
  text-decoration: none;
  color: #1c203f;
  font-weight: bold;
  font-size: 13px;
  box-shadow: 4px 4px 0 #253a6e;
  transition: all 0.2s ease-in-out;
  position: relative;
}

.ds-cartuchos a span {
  font-size: 24px;
  display: block;
  margin-bottom: 4px;
}

.ds-cartuchos a:hover {
  background-color: #b0a4d1;
  transform: translateY(-4px);
  box-shadow: 6px 6px 0 #121b34;
}


/* Layout principal */
#container {
  max-width: 70%;
  margin: 0 auto;
}

/*#container a {
  color: #f4b5c1;
  font-weight: bold;
}*/

/* Header */
#header {
  width: 100%;
  background-color: #253a6e;
  height: 200px;
  background-image: var(--header-image);
  background-size: 100%;
}

/* Navbar */
#navbar {
  height: 40px;
  background-color: #281646;
  width: 100%;
  margin: 0 auto 5px auto;
}

#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: #f4b5c1;
  font-weight: 800;
  text-decoration: none;
}

#navbar li a:hover {
  color: #a49cba;
  text-decoration: underline;
}

/* Flex layout */
#flex {
  display: flex;
}

aside {
  background-color: #354f90 ;
  width: 200px;
  padding: 20px;
  font-size: smaller;
}

main {
  background-color: #405eac;
  flex: 1;
  padding: 20px;
  order: 2;
}

/* Sidebars */
#leftSidebar {
  order: 1;
}

#rightSidebar {
  order: 3;
}

/* Footer */
footer {
  background-color: #281646;
  width: 100%;
  height: 40px;
  padding: 1px;
  text-align: center;
}

/* Tipografía */
h1, h2, h3 {
  color: #d6def3;
}

h1 {
  font-size: 25px;
}

strong {
  color: #f4b5c1;
}

/* Caja especial */
.box {
  background-color: #281646;
  border: 2px solid #f4b5c1;
  padding: 10px;
}

/* Barra superior */
#topBar {
  width: 100%;
  height: 30px;
  padding: 10px;
  font-size: smaller;
  background-color: #281646;
}

/* 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;
  }
}
