body {
    font-family: 'Arial Rounded MT Bold', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fafafa;
    color: #333;
}

header {
    background-color: #fff;
    border-bottom: 1px solid #e6e6e6;
    padding: 1em 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1em;
}

.logo img {
    height: 50px;
    border: 2px solid #ccc;
    border-radius: 50%;
    padding: 5px;
}

.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.menu li {
    margin-left: 1em;
    position: relative;
}

.menu li a {
    color: #333;
    text-decoration: none;
    padding: 0.5em 1em;
}

.menu .dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    top: 100%;
    left: 0;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.menu .dropdown-content li {
    margin: 0;
}

.menu .dropdown-content li a {
    padding: 1em;
    display: block;
    color: #333;
}

.menu .dropdown:hover .dropdown-content {
    display: block;
}

.slider {
    max-width: 800px;
    margin: 2em auto;
    border-radius: 10px;
    overflow: hidden;
}

.slider img {
    width: 100%;
    height: 400px; /* Ajusta esta altura según tu preferencia */
    object-fit: cover;
}

.content {
    text-align: center;
    padding: 2em 1em;
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.content h1 {
    font-size: 2em;
    margin-bottom: 0.5em;
}

.content p {
    font-size: 1em;
    margin-bottom: 1.5em;
    color: #777;
}

.photo-frame, .image-frame {
    padding: 10px;
    border: 5px solid #ccc;
    border-radius: 50%;
    display: inline-block;
    margin-top: 1em;
    max-width: 300px; /* Ajusta el tamaño máximo del marco */
    transition: transform 0.3s ease;
}

.photo-frame img, .image-frame img {
    width: 100%;
    height: auto;
    border-radius: 50%;
}

.photo-frame:hover, .image-frame:hover {
    transform: scale(1.05);
}

.text-container, .text-content {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2em;
    text-align: center;
}

.user-text-box {
    flex: 1;
}

.user-text-box textarea {
    width: 100%;
    max-width: 400px;
    height: 150px;
    padding: 1em;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-family: 'Arial Rounded MT Bold', Arial, sans-serif;
    font-size: 1em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    resize: none;
}

.gif-container {
    margin-left: 1em;
}

.gif-container img {
    max-width: 100px;
    height: auto;
}

footer {
    background-color: #fff;
    border-top: 1px solid #e6e6e6;
    color: #777;
    text-align: center;
    padding: 1em 0;
}

.social-media {
    margin-top: 1em;
}

.social-media a {
    color: #333;
    margin: 0 10px;
    font-size: 1.5em;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color:  #0073e6;
}

/* Estilos específicos para la página de Gustos */
.image-gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.image-frame {
    width: 150px;
    height: 150px;
}

.text-content {
    margin-top: 2em;
    max-width: 800px;
    margin: 0 auto;
}