.tooltip {
    width: 500px;
    display: none;
    position: absolute;
    background-color: whitesmoke;
    border: solid 5px;
    color: black;
    padding: 55px;
    border-radius: 5px;
}

ul, li {
    list-style: none;
}

.content-container {
    display: grid;
    gap: 5px;
    grid-template-columns: repeat(2, 300px);
}

.content-item-left {
    grid-column: 1 / 1;
    text-align: right;
}

.content-item-right {
    grid-column: 2 / 2;
    text-align: left;
}

.content-item-left:first-child, .content-item-left:nth-child(4) {
    margin-bottom: 15px;
}

.content-item-right:nth-child(3) {
    margin-bottom: 10px;
}

a {
    color:rgb(70, 125, 227);
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

ul {
    list-style: none;
}

ul li::before {
    content: "\200B";
  }

li:last-child {
    margin-bottom: 20px;
}

.separator {
    background-color: black;
    border: solid 2px;
    margin-bottom: 2%;
}

/* Media queries */