* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

body {
  color: black;
  background-color: white;
  padding: 0;
  margin: 0;
  font-family: "Open Sans", sans-serif;
}

h1,
h3,
h4 {
  margin: 0;
  font-size: inherit;
}

a {
  text-decoration: none;
}

#body-wrapper {
  width: 100%;
}

.panel {
  width: 100%;
  min-height: 768px;
  padding: 64px 64px;
}

#panel-landing {
  height: 100vh;
  color: #eeeeee;
  background-color: #348feb;
}

#panel-about {
  min-height: fit-content;
  color: #eeeeee;
  background-color: #0078f1;
}

#panel-project {
  height: fit-content;
  color: #eeeeee;
  background-color: #4ca8ff;
}

div.panel .panel-title {
  font-size: 3em;
  margin: auto;
  text-align: center;
  margin-bottom: 40px;
}

.flex-vertical-center {
  display: flex;
  align-items: center;
}

.flex-horizontal-center {
  display: flex;
  justify-content: center;
}

.text-small {
  font-size: 1em;
}

.text-medium {
  font-size: 1.4em;
}

.text-large {
  font-size: 2em;
}

.text-larger {
  font-size: 4em;
}

.text-jumbo {
  font-size: 6em;
}

.text-bold {
  font-weight: bold;
}

.text-light {
  font-weight: 25;
}

.text-center {
  text-align: center;
}

.text-italic {
  font-style: italic;
}

#contacts {
  margin: 50px 0;
}

.contact-image {
  height: 45px;
  width: 45px;
}

.contact-anchor {
  margin: 0 8px;
}

.navbar {
  position: fixed;
  top: 0;
}

.image-circle {
  border-radius: 50%;
}

#profile-photo {
  height: 300px;
  width: 300px;
}

.inline-link {
  /* font-weight: bold; */
  color: #a8afff;
}

.row {
  display: flex;
  justify-content: center;
  margin: auto;
}

#bio-desc {
  text-align: right;
  margin-right: 50px;
}

#about-bio {
  max-width: 1000px;
}

.project-grid-container {
  width: 80%;
  margin-top: 70px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 50% 50%;
  grid-gap: 50px;
}

.project-card {
  height: 300px;
  background-color: rgba(154, 117, 255, 0.171);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 2px solid rgba(0, 20, 134, 0.3);
}

.project-header {
  height: 50px;
  display: flex;
  align-items: center;
}

.project-name {
  font-weight: normal;
  font-size: 20px;
  margin-left: 20px;
}

.project-logo {
  height: 40px;
  width: auto;
}

.project-description {
  height: 100px;
  padding: 0 10px;
  overflow-y: auto;
  overflow-wrap: break-word;
}

.project-status {
  margin-left: 5px;
  padding: 4px 10px;
  height: 30px;
  border-radius: 7px;
  font-weight: bold;
  width: fit-content;
  margin-bottom: 10px;
}

.project-finished {
  background-color: lightgreen;
  color: #004400;
  border: 1px solid rgb(55, 109, 55);
}

.project-unfinished {
  background-color: orange;
  color: #571700;
  border: 1px solid rgb(97, 63, 0);
}

.project-description::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

.project-description::-webkit-scrollbar-track {
  box-shadow: 0;
}

.project-description::-webkit-scrollbar-thumb {
  background: rgba(221, 221, 221, 0.5);
  border-radius: 10px;
}

.project-description::-webkit-scrollbar-thumb:hover {
  background: rgba(170, 170, 170, 0.7);
  opacity: 0.5;
}

.project-refs {
  height: 40px;
}

.project-link {
  background-color: #478ed2;
  font-weight: normal;
  color: rgb(255, 255, 255);
  margin: 0 5px;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 10px 0;
}

.greyed {
  color: rgb(214, 214, 214);
}