body {
    font-family: 'Space Grotesk', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f5f5f5;
}

.container {
    text-align: center;
}

.title-image {
    max-width: 70%; /* Ajusta el tamaño del título según tu preferencia */
    margin: 20px auto; /* Espaciado automático para centrar */
    display: block;
}

.subtitle-image {
    max-width: 40%; /* Haz el donut más pequeño */
    height: auto; /* Mantén las proporciones */
    margin: 10px auto; /* Centrado verticalmente con espacio */
    display: block;
}

.project-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    font-size: 1.5rem;
}

.project-item {
    margin: 10px 0;
    cursor: pointer;
    position: relative;
}

.project-item:hover {
    font-weight: bold;
}

.project-item:not(:last-child) {
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.hover-image {
    position: absolute;
    pointer-events: none;
    max-width: 200px;
    display: none;
}

.gif-link {
    max-width: 20%; 
    height: auto; 
    display: block;
    margin: 0 auto 10px; 
    cursor: pointer; 
    transition: transform 0.2s ease; 
}

.gif-link:hover {
    transform: scale(1.1); 
}
