* {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-sizing: border-box;
}

.link-reset {
    text-decoration: none;
    color: inherit;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

header {
    background-color: #AD1457;
    color: white;
    padding: 10px 20px;
}

section {
    margin-block: 10px;
}

.d-inline-block {
    display: inline-block;
}

td {
    padding-inline: 5px;
}

.copy-icon-link {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

/* Base container */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  margin-block: 30px;
}

/* Small tablets */
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

/* Tablets */
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

/* Laptops */
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

/* Large screens */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Very large screens */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}