#cookies {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 320px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: white;
    margin: 10px;
    color: black;
    padding: 20px;
    border-radius: 10px 10px 10px 0;
    text-align: justify;
    z-index: 1500;
    border: 1px solid lightgray;
}

.cookies-section {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.link {
    color: blue;
    border-bottom: 1px solid blue;
}
.cookies-section .title {
    font-weight: bold;
    font-size: 1.2em;
}
.cookies-section .descriptions {
    text-align: justify;
    font-size: 1em;
}