#linguetta{
    width: 100px;
    border: 5px solid #e5007a;
    border-left: none;
    border-radius: 0 12px 12px 0;
    box-shadow: 4px 4px 8px;
    display: flex;
    position: fixed;
    left: -120px;
    top: 45%;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}
#linguetta:hover{
    background: #08255f;
}
#linguetta.show{
    left: 0;
}

#linguetta-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 14px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: fit-content;
    padding: 0 80px;
    border: 4px solid #e5007a;
    border-radius: 20px;
    height: 300px;
    z-index: 10000;
}

#linguetta-content svg{
    position: absolute;
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

#linguetta-overlay{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #e5007a90;
    z-index: 9999;
    backdrop-filter: blur(4px);
}
#linguetta-overlay.show{
    display: block;
}
.email-me{
    font-weight: 600;
    text-decoration: underline;
    font-size: 18px;
    cursor: pointer;
}

@media (max-width: 600px) {
    #linguetta-content{
        padding: 50px 30px;
        height: unset;
        width: 80vw;
        text-align: center;
    }
}