/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */



body {
  background: darkslateblue;
  color: black;
  }
html {
  font-family: "Helvetica", "Arial", sans-serif;
}

h1 {
  text-align: center;
  color: aliceblue;
  font-size: 2.5em;
  font-family: "Times New Roman", "helvetica"
}


socials {
  font-weight: bold;
  padding: 5px;
  font-size: 1em;
  letter-spacing: 5px;
  a { 
    color: hotpink;
  }
}

  
h2 {
  text-align: center;
  color: aliceblue;
  font-size: 1em;
  font-style: italic;
  font-family: "Times New Roman", "helvetica"
  
}
header {
  text-align: center
}
  
p {
  color: aqua;
  padding: 5px;
  
}

table {
  table-layout: fixed;
  width: 80%;
  margin: 10px auto;
  border-collapse: collapse;
}

th {
  padding: 0.5em;
}
td {
  padding: 0.3em;
}
tr :nth-child(2),
tr :nth-child(3) {
  text-align: left;
  width: 40%;
}

tr :nth-child(1),
tr :nth-child(4) {
  text-align: left;
  width: 55%;
}

tfoot tr :nth-child(1) {
  text-align: right;
}

tfoot tr :nth-child(2) {
  text-align: left;
}

th,
td {
  vertical-align: top;
  padding: 0.3em;
}

table {
  table-layout: fixed;
  width: 80%;
  margin: 10px auto;
  border-collapse: collapse;
  border-top: 2px solid #00223f;
  border-bottom: 2px solid #00223f;
}
tbody tr:nth-child(odd) {
  background-color: blueviolet;
}
caption {
  text-align: left;
  padding: 1em;
  font-style: italic;
  caption-side: top;
  letter-spacing: 1px;
  color: aquamarine
}