#contactForm {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgb(34, 34, 34);
  padding: 25px;
  box-sizing: border-box;
  min-width: 25%;
  max-width: 100%;
  border-radius: 10px;
}

#contactForm fieldset {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

#contactForm button {
  width: fit-content;
  font-size: clamp(.8rem, .7rem + 1vw, 1.5rem);
  padding: 5px 10px;
  background-color: rgb(70, 70, 70);
  border: none;
  border-radius: 5px;
  transition: filter .2s;
  color: #bdbdbd;
  margin: 20px 0 0 0;
  cursor: pointer;
}

#contactForm button:hover {
  filter: brightness(1.2);
}

#contactForm button:active {
  filter: brightness(1.5);
}

#contactForm fieldset label {
  display: flex;
  flex-direction: column;
  text-align: left;
  align-items: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(.8rem, .7rem + 1vw, 1.5rem);
  gap: 10px;
  width: 100%;
}

#contactForm fieldset label input, #contactForm fieldset label textarea {
  font-size: clamp(.9rem, .8rem + 1vw, 1rem);
  box-sizing: border-box;
  padding: 5px 5px;
  background-color: #b5b5b5;
  width: 100%;
  max-width: 100%;
}

textarea {
  resize: none;
}

#contactForm fieldset label input:focus-visible, #contactForm fieldset label textarea:focus-visible, #contactForm fieldset button:focus-visible {
  outline: var(--focusStyle);
}

.labelText {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

table {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: calc(var(--minWebsiteSize) - 50px);
  max-width: 100%;
  border: rgb(10, 10, 10) solid 2px;
  overflow: auto;
}

thead {
  width: 100%;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(.8rem, .7rem + 1vw, 1.5rem);
}

tr {
  display: grid;
  grid-template-columns: 20% 20% 20% 20% 20%;
  width: 100%;
  background-color: #b5b5b5;
}

thead > tr {
  background-color: rgb(34, 34, 34);
}

tr:nth-of-type(2n) {
  background-color: #a4a4a4;
}

th, td {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 10px;
  flex-wrap: wrap;
}

td {
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
  word-break: break-word;
  white-space: normal;
  font-size: clamp(.5rem, .4rem + 1vw, 1rem);
  align-items: center;
  line-height: 1.5;
}

tbody tr td a {
  text-decoration: underline;
}

tbody tr td a:focus-visible {
  outline: var(--focusStyle);
}

.mobileBreak {
  display: none;
}

  @media (max-width: 950px) {
    td {
      text-align: center;
      padding: 2px 2px;
    }

    .mobileBreak {
      display: flex;
    }
  }

  @media (max-width: 700px) {
    #contactForm {
      min-width: 70%;
    }
  }