body {
  margin: 0;
  background-color: #f8fafc;
  font-family: Inter, Arial;
  color: #111827;
}

p {
  margin: 0;
}

.headerArea {
  margin: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  background-color: #edeef3;
  box-shadow: 102px 10px 10px rgba(59, 130, 246, 0.25);
  height: 93px;
  width: 100%;
}

.headerImage {
  width: 105px;
  height: 87px;
  border: 0.8mm solid #14b8a6;
}

.headerTitle {
  color: #0a2540;
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  text-shadow: 0px 4px 6px rgba(10, 37, 64, 0.25);
}

.navList {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding-right: 15px;
  height: 73px;
}

.navItem {
  height: 100%;
}

.navItem a {
  color: #111827;
  padding-right: 15px;
  padding-left: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.navItem a:hover {
  color: #e5e7eb;
  background-color: rgba(59, 130, 246, 0.8);
}

.meatNPotatoes {
  display: flex;
  height: calc(100vh - 93px);
}

.sideMenu {
  width: 87px;
  box-shadow: 4px 3px 8px rgba(59, 130, 246, 0.5);
  background-color: #3b82f6;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 10px;
}

.changeDarkMode {
  width: 70px;
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 0;
}

.darkModeIcon {
  width: 70px;
}

.mainBody {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-height: calc(100vh - 93px);
  max-width: calc(100vw - 93px);
}

.resume {
  margin: 20px auto;
  padding: 40px;
  background: white;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.375);
  aspect-ratio: 100 / 129;
  box-sizing: border-box;
  overflow: auto;
  font-size: 12px;
  font-weight: 400;
}

.resumeInfo {
  line-height: 17px;
}

.resumeSummary {
  margin-top: 12px;
  margin-bottom: 12px;
}

.resumeTitle {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
}

.resumeSubtitle {
  font-size: 16px;
  font-weight: 600;
}

.workExperience {
  margin-top: 6px;
  display: flex;
  justify-content: space-between;
}

.workRole {
  font-weight: 500;
}

.workSkills {
  width: 450px;
}

.workSkills li{
  padding-bottom: 5px;
}

.timeNDate {
  display: flex;
  justify-content: right;
  border-top: 1mm solid #3b82f6;
  background-color: #e5e7ef;
  padding: 20px;
  width: calc(100vw - 133px);
  left: 132;
  position: fixed;
  bottom: 0;
  z-index: 1002;
}

body.dark {
  background-color: #0f172a;
  color: #e5e7eb;
}

body.dark .headerArea {
  background-color: #020617;
}

body.dark .headerTitle {
  color: #e5e7eb;
  text-shadow: 0px 4px 6px rgba(20, 184, 166, 0.325);
}

body.dark .sideMenu {
  background-color: #0a2540;
}

body.dark a {
  color: #93c5fd;
}

body.dark a:hover {
  color: #0a2540;
}

body.dark .resume {
  background-color: #0a2540;
  color: rgb(59, 130, 246);
  box-shadow: -1px -1px 10px rgba(68, 139, 255, 0.5);
}

body.dark .timeNDate {
  border-top: 0;
  background-color: #3b82f6;
}
