.split {
  display: flex;
}

.split div {
  flex-basis: 40%;
}

.split > div:first-child {
    flex-basis: 60%;
}

.centre {
  display: flex;
  justify-content: center;
  align-items: center;
}

.centre img{
  max-width: calc(30vw - 20px);
  height: auto;
  margin: 10px;
  display: block;
  border-radius: 20px;
}

p {
   margin-left: 100px; margin-right: 100px; 
}

table {
    width: 80vw;
    border-collapse: collapse;
    margin: 20px auto;
    background-color: var(--secondary-background);
    color: var(--text-color-dark);
    border-radius: 8px;
    overflow: hidden;
}

th, td {
    padding: 12px 15px;
    text-align: center;
    border: 1px solid var(--border-color);
    color: #DE8100;
}

th {
    background-color: var(--accent-color);
    color: var(--primary-background);
    font-weight: bold;
    text-transform: uppercase;
    color: #DE8100;

}

tbody tr:nth-child(odd) {
    background-color: #3b4b61;
}