* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-shadow: 3px 4px 7px rgba(0, 0, 0, 0.187);
}

body {
  background-color: whitesmoke;
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

body::-webkit-scrollbar {
  display: none;
}

main {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

#temp-div {
  font-size: 2.5em;
}

#profile-card {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  width: 27.5em;
  height: 45em;
  border-radius: 10px;
  padding: 3em;
  padding-left: 2.5em;
  padding-right: 2.5em;
  position: fixed;
  left: 5em;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #1b365d;
  color: white;
}

#profile-img {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 1.5em;
  overflow: hidden;
  outline: 5px solid rgba(255, 255, 255, 0.82);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  scale: 1.15;
}

#profile-img > img {
  width: auto;
  height: 10em;
}

#profile-desc > h3 {
  font-size: 20px;
  text-align: center;
  margin-bottom: 5px;
}

#profile-desc > h4 {
  text-align: center;
  margin-bottom: 10px;
}

#profile-desc > p {
  font-size: 15px;
  text-align: justify;
}

#profile-desc > h4 > a {
  color: white;
  text-decoration: none;
  text-decoration: underline;
}

#corner-nav {
  right: -1.4em;
  top: 0.9em;
  border-top-right-radius: 10px;
  overflow: hidden;
  width: 63em;
  height: 3em;
  position: fixed;
  z-index: 9999999;
}

#corner-nav > img {
  width: 100%;
  height: auto;
}

#white-strip {
  right: 1em;
  top: 0em;
  overflow: hidden;
  width: 62em;
  height: 3.5em;
  position: fixed;
  z-index: 9999999;
}

#white-strip > img {
  width: 100%;
  height: auto;
}

#nav-links {
  font-size: 21px;
  margin-top: -1.15em;
  margin-left: 5em;
  position: fixed;
  top: 17px;
}

#nav-links > a {
  text-decoration: none;
  color: whitesmoke;
  transition: ease-in-out 400ms;
}

#nav-links > a:hover {
  color: rgb(226, 226, 226);
  cursor: pointer;
  font-size: 22px;
}

#nav-links > span {
  font-size: 36px;
  color: #1b365d;
}

#nav-links > a.active {
  color: #1b365d;
  font-weight: bold;
}

#emp-spc {
  width: 33%;
  height: 100%;
  z-index: 100;
}

#main-content {
  width: 60%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 7.5em;
}

#content-card {
  width: 100%;
  height: 100%;
  padding: 2em;
  padding-right: 3em;
  border-radius: 10px;
  background-color: whitesmoke;
  margin-top: 8em;
}

#center-align {
  text-align: center;
}

.color-img {
  filter: invert(26%) sepia(85%) saturate(1821%) hue-rotate(350deg)
    brightness(94%) contrast(88%);
  scale: 1.2;
}

#past-work-section {
  margin-top: 10em;
  padding-bottom: 4em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2em;
  width: 100%;
}

.project-card {
  width: 100%;
  height: 20em;
  padding: 1.5em;
  margin-left: 4em;
  margin-right: 1em;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  display: flex;
  flex-direction: row;
  text-decoration: none;
  transition: ease-in-out 300ms;
  background-color: white;
  overflow: hidden;
  position: relative;
}

.project-card:hover {
  scale: 1.0075;
  background-color: #1b365d;
}

.project-card:hover > .project-desc > h3 {
  color: white;
}

.project-card:hover > .project-desc > .rotated {
  background-color: #d14124;
  scale: 1;
}

.project-card:hover > .project-desc > p {
  color: #1b365d;
}

hr {
  width: 100%;
  margin-left: 4em;
  margin-right: 1em;
}

.project-preview {
  width: 35%;
  height: 100%;
  border: 1px solid #1b365d;
  border-radius: 5px;
  margin-right: 2em;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.project-preview > img {
  width: 100%;
  height: auto;
}

.project-desc {
  width: 65%;
  height: 100%;
  margin-top: 1em;
  color: black;
  font-size: 18px;
  position: relative;
}

.project-desc > p {
  position: absolute;
  right: 0em;
  bottom: 1em;
  z-index: 99999;
  color: rgba(255, 255, 255, 0);
  text-shadow: none;
}

.project-desc > p > u {
  text-shadow: none;
}

.rotated {
  width: 175em;
  height: 120em;
  position: absolute;
  top: 0;
  left: -30;
  border-bottom-right-radius: 10px;
  transform: rotate(45deg);
  transition: ease-in-out 300ms;
  background-color: grey;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  scale: 0.9;
}
