/* 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." */

* {
  margin: 0;
  padding: 0;
}

body {
  background-color: AliceBlue;
  color: LightSlateGrey;
  font-family: Georgia;
}

h1 {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
  color: SlateGrey;
}

.lower-layout {
  display: flex;
  flex-direction: row;
  width: 800px;
  margin: auto;
  background-color: white;
  border-radius: 10px;
}

h2 {
  margin-bottom: 10px;
}

.intro {
  margin: 21px 10px;
}

.intro p {
  margin-bottom: 7.5px;
}

.currently {
  box-sizing: border-box;
  border: 1.5px solid LightSlateGrey;
  border-radius: 12.5px;
  width: 260px;
  padding: 7.5px;
  margin: 25px 10px;
  background-color: AliceBlue;
  color: SlateGrey;
}

.currently h3 {
  margin-left: 9.5px;
  margin-top: 7.5px;
  margin-bottom: 10px;
  text-decoration: underline;
}

.currently table {
  margin-bottom: 9.5px;
  font-size: 15px;
}

.currently th, .currently td {
  padding-top: 3px;
  padding-bottom: 3px;
}

.currently th {
  padding-right: 3px;
}

.currently td {
  padding-left: 3px;
}

.update-log {
  box-sizing: border-box;
  border: 1.5px solid LightSlateGrey;
  border-radius: 12.5px;
  height: 140px;
  width: 260px;
  margin: 25px 10px;
  padding: 7.5px;
  background-color: AliceBlue;
  color: SlateGrey;
}

.update-log h3 {
  margin-left: 9.5px;
  margin-top: 7.5px;
  margin-bottom: 10px;
  text-decoration: underline;
}

.update-log ul {
  margin-left: 9.5px;
  margin-bottom: 9.5px;
  font-size: 15px;
  list-style-type: none;
  height: 79px;
  overflow: auto;
  font-size: 14px;
}

.update-log li {
  margin-bottom: 5px;
}

.update-log hr {
  border-top: 1px solid SlateGrey;
  border-radius: 1px;
  margin-top: 7.5px;
  margin-bottom: 10px;
  margin-right: 9.5px;
}

.about {
  box-sizing: border-box;
  width: 800px;
  margin: auto;
  background-color: white;
  border-radius: 10px;
  padding: 25px 25px;
}

.about-text p {
  margin-bottom: 7.5px;
  display: flex;
  justify-content: center;
  text-align: center;
}

.interests table {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  border: 1.75px solid LightSlateGrey;
  border-radius: 12.5px;
  padding: 7.5px;
  background: AliceBlue;
  color: SlateGrey;
}

.interests td, .interests th {
  padding: 8px;
  font-size: 15px;
}

th {
  text-align: right;
}

td {
  text-align: left;
}