:root {
  --font-size: clamp(20px, 2.5vw, 1em);
}

a {
    color: var(--color-white);
    text-decoration: underline;
    &:hover {
      color: var(--color-magenta);
    }
  }
  
details {
  border: solid white 3px;
  border-radius: 1em;
  padding: 1em;
  margin-bottom: 1em;
}

table {
  font-size: var(--font-size);
  border-bottom : 3px solid #ccc;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;

  caption {
    font-size: 1.5em;
    margin: .5em 0 .75em;
  }

  th {
    font-size: .85em;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-align: left;
    padding: 1em .5em;
  }

  td {
    padding: .5em 1em;
  }

  tbody tr {
    background-color: rgba(204, 204, 204, 0.3);
    border-bottom: 1px solid #ddd;
  }

  @media screen and (max-width: 767px) {
    border: 0;

    caption {
      font-size: 1.3em;
    }
    
    thead {
      border: none;
      clip: rect(0 0 0 0);
      height: 1px;
      margin: -1px;
      overflow: hidden;
      padding: 0;
      position: absolute;
      width: 1px;
    }
    
    tr {
      border-bottom: 3px solid #ddd;
      border-radius: .5em;
      padding: .5em;
      display: block;
      margin-bottom: 1em;
    }
    
    td {
      border-bottom: 1px solid #ddd;
      font-size: .8em;
      text-align: right;
      display: grid;
      grid-template-columns: .8fr 1fr;
      padding: 10px 0;
      align-items: center;

      &::before {
        content: attr(data-label);
        float: left;
        font-weight: bold;
        text-transform: uppercase;
        max-width: 50%;
        height: fit-content;
        text-align: left;
      }

      &:last-child {
        border-bottom: 0;
      }
    }
  }
}

/* ---------- Main Section - Start------------*/

/* Articles */
.site-hosting {
  ul {
    list-style-type: disc;
    padding-left: 1em;

    li {
      margin-bottom: .5em;
    }
  }
}

.general-info {
  a {
    color: var(--color-magenta);
  }
}


/* Cookies */

#cookie-info {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

