/*
base.css is the main css file used for generic styling of my personal website. This css
file will be utilized as the generic design for most webpages in this project.
*/
* {
  margin: 0%;
  padding: 0%;
}
/*body is the main container for whole page*/
body {
  position: relative;
  margin: 0%;
  padding: 0%;
  top: 0vh;
}
#body {
  margin: 0%;
  padding: 0%;
  background-color: black;
  height: 100%;
  width: 100%;
}
/*homebar is a sticky homebar that is meant to stay at the top of the page while
scrolling*/
#homebar {
  position: fixed;
  width: 100vw;
  height: 7vh;
  top: -0.5vh;
  text-align: center;
  margin: 0%;
  padding: 0%;
  background-color: black;
  z-index: 999;
}
#barButton {
  position: relative;
  margin: 0;
  top: 1vh;
  margin-left: 3%;
  margin-right: 3%;
  font-size: 3vh;
  color: aquamarine;
  padding-top: 1%;
  text-decoration: none;
}
/**
**/
#mainsection {
  position: relative;
  top: 6vh;
  width: 100vw;
  height: 100vh;
  padding: 0%;
  background-color: black;
}

header {
  position: relative;
  margin: 0%;
  padding: 1.5vh;
  text-align: center;
  background-color: aquamarine;
  border-bottom: 1vh solid white;
}
#contentsection1 {
  position: relative;
  background-color: aquamarine;
  padding: 0%;
  margin: 0.5vw;
  width: 96vw;
  height: 40vh;
  border-top: 1vh solid white;
  border-left: 1vw solid white;
  border-right: 1vw solid white;
  border-bottom: 1vh solid white;
  border-radius: 10px;
}
#contentsection2 {
  position: relative;
  background-color: aquamarine;
  padding: 0%;
  margin: 0.5vw;
  width: 96vw;
  height: 100vh;
  border-top: 1vh solid white;
  border-left: 1vw solid white;
  border-right: 1vw solid white;
  border-bottom: 1vh solid white;
  border-radius: 10px;
}
#desc {
  position: relative;
  font-size: 16pt;
  font-style: italic;
  font-weight: bold;
  padding: 10px;
  background-color: aquamarine;
  margin: 0px;
}
#descList {
  font-size: 16pt;
  margin: 10px;
}

#tableTest tr td {
  background-color: #543c2c;
  text-align: center;
}

#tableTest tr td a {
  color: #f3b48b;
  text-decoration: none;
  font-size: 2vw;
  font-weight: bold;
}
