nav a[href='contact.html'] {
  text-decoration: underline;
}

body {
  background: url("../media/contact.png") center repeat;
}

aside {
  padding: 4vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

aside summary {
  text-align: center;
}

aside details p {
  font-size: 1rem;
}

table {
  border-collapse: separate;
  border-spacing: 0;
  width: 500px;
  margin: 100px auto auto;
}

table * {
  font-size: 1.1rem;
  padding: 20px;
  text-align: center;
}

td, th {
  border: 1px solid white;
}

tr a {
  text-decoration: underline;
}

tr:first-child th:first-child {
  border-top-left-radius: 8px;
}

tr:first-child th:last-child {
  border-top-right-radius: 8px;
}

tr:last-child td:first-child {
  border-bottom-left-radius: 8px;
}

tr:last-child td:last-child {
  border-bottom-right-radius: 8px;
}