

/* Fuentes importadas*/

.barriecito-regular {
    font-family: "Barriecito", system-ui;
    font-weight: 400;
    font-style: normal;
}

.shadows-into-light-regular {
    font-family: "Shadows Into Light", cursive;
    font-weight: 400;
    font-style: normal;
}

.borel-regular {
  font-family: "Borel", cursive;
  font-weight: 400;
  font-style: normal;
}

/* Pagina*/


body {
    background-color: #f8f6f6;
    color: #545454;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.nav {
    display: flex;
    justify-content: center;
    gap: 20px;
}

a {
  display: inline-block; 
  transition: transform 0.3s ease;
}

a:hover {
  transform: scale(1.1); 
}


.boton {
    background-color: #e29fb6;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}

.boton:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.25);
}

header {
    background-color: #d4eaf7;
    width: 100%;
    max-width: 900px;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

header h1 {
    font-family: 'barriecito','Comic Sans MS', sans-serif;
    color: #302e2e;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

main {
    font-family: 'Comic Sans MS', 'borel', sans-serif;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 900px;
}

.articulo, .video-container {
    background-color: #f3e9b3ef;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.articulo {
    min-width: 300px;
}

aside {
    min-width: 200px;
    background-color: #f1c7d5;
    align-self: left;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h2 {
    font-family: 'Borel','Comic Sans MS', sans-serif;
    font-size: 1.5em;
    color: #302e2e;
    text-align: center;
    font-weight: bolder;
}

aside ol {
    padding-left: 1.5em;
    margin-left: 0;
}

aside li {
    font-family: 'Comic Sans MS', 'borel', sans-serif;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 10px;
    margin-bottom: 8px;
    border-radius: 10px;
}

form button {
    display: flex;
    justify-content: center;
}

form {
    background-color: #e0f2d4;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.video-container {
    width: 100%;
    max-width: 600px;
    text-align: center;
    justify-content: center;
}

video {
    width: 100%;
    border-radius: 20px;
}

#video-seccion h2 {
    font-family: 'borel','Comic Sans MS', sans-serif;
    font-size: 1.5em;
    color: #302e2e;
}

footer {
    margin-top: 20px;
    color: #6b6b6b;
    font-family: 'Comic Sans MS', 'borel', sans-serif;
}

#brutus{
    width: 60%;
    border-radius: 20px;
    max-height: 600px;
    width: auto;
}

#icarus{
    width: 60%;
    border-radius: 50px;
    max-width: 500px;
    height: auto;
}

#whiskas {
    font-family: "Shadows Into Light",'Comic Sans MS', sans-serif;
    background-color: #f1c7d5;
    font-weight: bolder;
    text-decoration: none;
    font-size: larger;
    text-align: center;
    justify-content: center;
    padding: 15px;
    border-radius: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


.icon-link {
    text-decoration: none;
    color: inherit;
    background-color: #e0f2d4;
    text-decoration: none;
    align-self: center;
    padding: 20px;
    border-radius: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.material-icons-outlined {
  font-size: 32px;
  color: #333;
  transition: transform 0.2s ease;
}

.icon-link:hover .material-icons-outlined {
  transform: scale(1.2);
}


textarea#mensaje {
    width: 100%;
    height: 150px;
    resize: vertical;
    margin-top: 10px;
}

.mensaje-label {
    margin-bottom: 10px;
    display: inline-block;
}

