#saludo{
    font-size: 70pt;
    font-weight: 900;
    -webkit-background-clip: text !important;
    background-clip: text;
    -webkit-text-fill-color: transparent !important;
    -webkit-text-stroke: 1px white;
}

.medio{
    font-size: 14pt;
}

*{
    font-family: Consolas;
    scroll-behavior: smooth;
    font-size: 14pt;
    margin: 0;
    padding: 0;
}

.card-hover:hover{
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(44,21,98,1) 0%, rgba(35,53,143,1) 47%, rgba(93,175,166,1) 100%);
}

a{
    cursor: pointer;
}

.language-bubble {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #333;
    color: #fff;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}
  
.language-dropup {
    display: none;
    position: absolute;
    background-color: #333;
    border-radius: 10px;
    bottom: 100%; /* Position above the bubble */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
  
.language-bubble:hover .language-dropup {
    display: block;
}
  
.language-link {
    display: block;
    padding: 10px;
    color: #fff;
    text-decoration: none;
}
  
.language-link:hover {
    background-color: #444;
}