@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@200..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body {
    background: rgb(29, 29, 29);
    color: rgb(255, 255, 255);
    text-align: center;
    font-family: "Roboto", sans-serif;
}

header {
    background-color: #a86df0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.1rem 3rem;
    border-radius: 30px;
    margin: 1.5rem;
    flex-wrap: wrap;
    font-family: "Inconsolata", monospace;
}

header h3 {
    color: #1d1d1d;
    font-size: 40px;
    text-align: center;
}

header div nav ul li {
    font-size: 30px;
    text-align: right;
    padding-inline: 1rem;
    list-style-type: none;
    display: inline-table;
    margin: 0 50px
}

header div nav ul li a {
    color: #ffffff;
    text-decoration: none;
}

.botonera1:hover {
    background-color: #99fce2;
    color: #a86df0;
    padding: 0.5rem;
    border-radius: 3rem;
    text-decoration: none;
}

body h1 {
    color: #a86df0;
    margin-top: 30px; 
    font-family: "Roboto", sans-serif;
    font-size: 20px;
}

body main article nav ul {
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin: 2rem auto;
    max-width: 80%;
}

body main article nav ul li {
    list-style-type: none;
    font-family: "Inconsolata", monospace;
    border-width: 0.1rem;
    border-style: solid;
    border-bottom-width: 1rem;
    border-color: #99fce2;
    border-radius: 15px;
    height: auto;
    width: 12rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    text-align: center;
    margin: 0.5rem;
    background-color: #1d1d1d;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

body main article nav ul li p a {
    color: #99fce2;
    text-decoration: none;
}

body main article nav ul li img {
    height: 100px;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
    filter: grayscale(100%);
    transition: filter 0.3s, transform 0.3s;
}

body main article nav ul li img:hover {
    filter: none;
    transform: scale(1.1);
}

body h2 {
    font-family: "Roboto", sans-serif;
    color: #1d1d1d;
    text-align: center;
    padding: 2px;
    font-size: 30px;
    margin-bottom: 10px; 
}

body h4 {
    font-family: "Roboto", sans-serif;
    color: #1d1d1d;
    text-align: center;
    font-size: 15px;
}

body main section {
    background-color: #99fce2;
    font-size: smaller;
    color: #1d1d1d;
    padding: 2px;
    border-radius: 30px;
    margin: 1.6rem auto; 
}

body main section article {
    color: #1d1d1d;
    font-family: "Roboto", sans-serif;
    text-align: center; 
}

footer {
    background-color: #1d1d1d;
    color: rgb(160, 160, 160);
    text-align: center;
    padding: 10px;
    font-size: 11px;
}