body {
    background-color: #ab539c;
    font-family: 'Emilys Candy', cursive; 
    display: block;
}
main{
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin-top: 10px;
    background-color: white;
    overflow: hidden;
}
header .container, main .container, footer .container {
    max-width: 855px;
    margin: auto;
}
header {
    background-color:  #fff;
    overflow: hidden;
}
header .left {
    float: left;
    width: 570px;
}
main {
    background-color: white;
    overflow: hidden;
    margin-top: 10px;
    display: block;
}
header ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    overflow: hidden;
}
header li {
    float: right;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 25px;
    margin-left: 10px;
    margin-top: 10px;
}
header li a, .dropbtn {
    display: flex;
    color: rgb(0, 0, 0);
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}
header li a:hover, .dropdown:hover .dropbtn {
    background-color: rgb(219, 217, 217);
}
header li.dropdown {
    display: inline-block;
}
header .dropdown-content {
    display: none;
    position: absolute;
    background-color: #fcfafa;
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
}
header .dropdown-content a {
    color: rgb(8, 7, 7);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}
header .dropdown-content a:hover {
    background-color: rgb(219, 217, 217);
}
header .dropdown:hover .dropdown-content {
    display: block;
}
header .inicio-container img {
    width: 180px;
    margin-top: 15px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
footer {
    margin-top: 10px;
    display: flex;
}
footer h3{
    font-size: 20px;
}
footer li, footer a, footer h3 {
    color: #f8f1f1;
}
footer .left {
    float: left;
    width: 557px;
}
footer .right {
    float: right;
    width: auto;
    align-items: flex-start;
    gap: 20px;
}
p {
    font-size: 22px;
    margin-bottom: 5px;
    color: black;
}
h1, h3 {
    animation: slideIn 1s ease-out;
    font-size: 40px;
    color:#ab539c;
    text-shadow: 2px 2px 5px rgba(214, 51, 132, 0.5);
    margin-bottom: 5px;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    align-items: center;
    gap: 20px;
    padding: 0 20px;
}
.content {
    overflow: auto; 
    width: 95%; 
    min-height: 95vh; 
    padding: 20px;
    border-radius: 15px;
    align-items: center;
}

.imgs {
    height: auto;
    border-radius: 15px; 
    gap: 20px;
    justify-content: center;
    display: flex; 
    justify-content: center; 
    flex-wrap: wrap;
}
.imgs img {
    width: 250px;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 5px 5px 20px rgb(171, 83, 156); 
    background: none !important;
    display: block;
}
.img1-container {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    box-shadow: 5px 5px 20px rgb(171, 83, 156); 
    width: 250px; 
    height: auto;
    background-color: transparent; 
    margin: 0 auto; 
}
.img1-container img {
    border-radius: 15px; 
    object-fit: cover; 
    width: 100%; 
    height: 100%; 
}
@media screen and (max-width: 768px) {
    header ul {
        flex-direction: column;
        align-items: center;
    }

    header li {
        font-size: 20px;
        margin: 5px 0;
    }

    header .inicio-container img {
        width: 150px;
        margin-top: 10px;
    }

    .container {
        flex-direction: column;
        padding: 0 10px;
    }

    .content {
        width: 100%;
        padding: 10px;
    }

    h1, h3 {
        font-size: 30px;
    }

    p {
        font-size: 18px;
    }

    .imgs img {
        width: 200px;
        height: auto;
    }

    .img1-container {
        width: 100%;
    }

    footer {
        flex-direction: column;
        align-items: center;
    }

    footer .left, footer .right {
        width: 100%;
        float: none;
        margin: 10px 0;
    }

    footer h3 {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    h1, h3 {
        font-size: 24px;
    }

    p {
        font-size: 16px;
    }

    .container {
        gap: 10px;
    }

    .imgs img {
        width: 100%;
        height: auto;
    }

    .img1-container {
        width: 100%;
        margin: 10px 0;
    }

    footer h3 {
        font-size: 14px;
    }
}