/*@media only screen and (max-width: 600px) {
    * {
        filter: none !important;
    }
}*/
@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400&family=Roboto+Mono&family=Saira:wght@100;300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400&family=Jost:wght@300;400;500;700&family=Roboto+Mono&family=Saira:wght@100;300;400;700&display=swap");
* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #101620;
}

#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #101620;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
   supported by Chrome, Edge, Opera and Firefox */
}

#parallax-container {
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
  perspective: 1px;
}

#greeter {
  position: relative;
  width: 100%;
  height: 75vh;
  background: radial-gradient(at 50% 100%, rgb(25, 38, 54) 0%, rgb(10, 11, 16) 81%);
  transform: translateZ(-1px) translateY(-12.5vh) scale(2);
  z-index: -2;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  overflow: hidden;
  overflow-y: auto;
  perspective: 1px;
}

/*@media only screen and (min-width: 600px) {
    #greeter > #greeter-title-container {

    }
}

@media only screen and (max-width: 600px) {
    #greeter > #greeter-title-container {
        flex-direction: column;
    }
}*/
#greeter-banner-container {
  display: flex;
  flex-direction: column;
  position: absolute;
  width: 95%;
  transform-style: preserve-3d;
  transform: translateZ(-1px) scale(2) translateY(-30vh);
  font-family: Comfortaa, "Trebuchet MS", Helvetica, sans-serif;
  font-display: block;
  font-size: 35pt;
  color: white;
}

#greeter-title-container {
  display: flex;
  justify-content: center;
  flex-direction: row;
  position: relative;
  width: 100%;
  height: 150px;
  transform-style: preserve-3d;
}

#greeter-title {
  flex: 0 1 auto;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.37), 0 0 80px rgba(255, 255, 255, 0.68);
}

#greeter-subtitle-container {
  display: flex;
  justify-content: center;
  flex-direction: row;
  position: relative;
  width: 100%;
  height: 150px;
  transform-style: preserve-3d;
}

#greeter-subtitle {
  flex: 0 1 auto;
  font-size: 25pt;
  font-family: Saira, monospace;
  font-weight: 100;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.37), 0 0 80px rgba(255, 255, 255, 0.68);
}

#greeter-title > #name {
  display: inline-block;
  position: relative;
  top: 50%;
  transform-style: preserve-3d;
  transform: translateY(-50%);
}

@media only screen and (max-width: 400px) {
  #greeter-title #surname {
    display: none;
  }
}
#greeter-banner-container #placeholder {
  transform-style: preserve-3d;
  flex: 0 10 75px;
  min-width: 20px;
}

@media only screen and (max-width: 400px) {
  #greeter-banner-container #placeholder {
    flex: 0 10 20px;
    min-width: 20px;
  }
}
#greeter-image-container {
  flex: 0 0 150px;
  transform-style: preserve-3d;
}

#greeter-image-container > img {
  transform-style: preserve-3d;
  width: 150px;
  border-radius: 75px;
  height: auto;
}

#greeter-image-blurred {
  position: absolute;
  left: 0;
  top: 0;
  filter: blur(50px);
  opacity: 0.5;
}

.below-greeter {
  position: relative;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.0784313725);
  background-color: white;
  overflow: auto;
  min-height: 100%;
  width: 100%;
  background-color: #101620;
}

#stars-canvas {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transform: translateZ(-3px) scale(4);
  z-index: -1;
}

#tab-bar {
  width: 100%;
  height: 10vh;
  margin: 30px 0 0 0;
}

#tab-bar > ul {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 80px;
}

@media only screen and (max-width: 400px) {
  #tab-bar > ul {
    gap: 6vw;
  }
}
#tab-bar > ul > li {
  display: flex;
  flex-direction: column;
  flex: 0 1 auto;
  color: white;
  text-align: center;
  font-family: Comfortaa, "Trebuchet MS", Helvetica, sans-serif;
  font-size: 15pt;
  cursor: pointer;
}

@media only screen and (max-width: 400px) {
  #tab-bar > ul > li {
    font-size: 12pt;
  }
}
#tab-bar > ul > li > div {
  flex: 0 0 auto;
  width: 100%;
}

#tab-bar > ul > li > .underscore {
  height: 2px;
  background-color: white;
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: 0;
  transition: 0.1s;
}

#tab-bar > ul > li > .active {
  transform: scaleX(1);
}

#tab-bar > ul > li:hover > .underscore {
  transform: scaleX(1);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.26);
}

#visible-content-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
}

#visible-content-column {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex: 0 0 auto;
  width: 100%;
}

.visible-content-row {
  flex: 0 0 auto;
  max-width: 1024px;
  width: 90%;
}

.project-widget {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: fit-content;
  border-radius: 30px 30px 10px 10px;
  border: 1px solid rgba(82, 110, 123, 0.6901960784);
  overflow: hidden;
  margin-bottom: 50px;
}

.project-widget-header {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  min-height: 135px;
  overflow: hidden;
}

.project-widget-header-background {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  filter: blur(2px);
  transform: scale(1.1);
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.7411764706);
}

.project-widget-header-title {
  position: relative;
  font-family: Jost, "Trebuchet MS", Helvetica, sans-serif;
  font-size: 18pt;
  color: white;
  text-shadow: 3px 3px 5px black, 0 0 2px black;
  padding: 20px;
}

.project-widget-strip {
  flex: 0 0 auto;
  width: 100%;
  height: 8px;
  background-color: yellow;
}

.project-widget-preview {
  display: flex;
  flex-direction: row;
  flex: 0 0 auto;
  gap: 20px;
  padding: 0 20px 0 20px;
  background-color: #1c2b42;
  position: relative;
  width: 100%;
  height: 100px;
  overflow-x: scroll;
  overflow-y: hidden;
}

.project-widget-preview-image-container {
  position: relative;
  flex: 0 0 auto;
  width: 200px;
  height: 100%;
  margin-top: 10px;
}

.project-widget-preview-image-container > .project-widget-preview-image {
  width: 100%;
  height: 100%;
  cursor: pointer;
  transition: 0.3s;
  background-size: cover;
}

.project-widget-preview-image-container > .project-widget-preview-image:hover {
  transform: scale(0.8);
}

.project-widget-content {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  width: 100%;
  padding-bottom: 20px;
  background-color: #1c2b42;
  padding: 20px;
  font-family: Jost, "Trebuchet MS", Helvetica, sans-serif;
  font-size: 12pt;
  color: white;
}

.project-widget-content-description {
  flex: 0 0 auto;
  width: 100%;
  height: fit-content;
  text-align: justify;
}

.project-widget-content-footer {
  flex: 0 0 auto;
  width: 100%;
  height: fit-content;
}

.project-widget-content-footer > ul {
  display: flex;
  list-style: none;
  flex-direction: row;
  gap: 5px;
  margin: 10px 0 0 0;
  padding: 0;
}

.project-widget-content-footer > ul > li {
  cursor: pointer;
  transition: 0.1s;
}

.project-widget-content-footer > ul > li:hover {
  transform: scale(1.2);
}

.blur-box {
  position: relative;
  margin-bottom: 50px;
}

.blurred {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.4;
}

table {
  position: relative;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  border-spacing: 20px;
  cursor: default;
  font-family: Jost, "Trebuchet MS", Helvetica, sans-serif;
  font-size: 12pt;
  color: white;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

td {
  border: 1px solid white;
  border-radius: 15px;
  padding: 5px;
  padding-left: 20px;
  transition: 0.1s;
  cursor: pointer;
}

td:hover {
  background-color: white;
  color: black;
}

td:focus-within {
  background-color: white;
  color: black;
}

@media only screen and (max-width: 600px) {
  td {
    padding-left: 5px;
  }
}
td:first-child {
  padding-left: 0;
  border: none;
  transform: translateY(-66%);
}

td:first-child:hover {
  background-color: transparent;
  color: white;
}

.open-top {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  padding-top: 10px;
}

.open-bottom {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  padding-bottom: 0;
}

.empty-td {
  border: none;
  padding: 0;
}

.empty-td:hover {
  background-color: transparent;
}

#info-box {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  min-height: 100px;
  margin-top: 50px;
  margin-bottom: 50px;
  border: 8px solid white;
  padding: 20px;
  font-family: Jost, "Trebuchet MS", Helvetica, sans-serif;
  color: white;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

#info-box-title {
  flex: 0 0 auto;
  width: 100%;
  margin-bottom: 30px;
  font-size: 18pt;
  font-weight: bold;
}

#info-box-description {
  flex: 0 0 auto;
  width: 100%;
  font-size: 14pt;
}

#skill-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.skill-set {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  background-color: #2b3542;
  border-radius: 20px;
  margin-bottom: 50px;
}

.skill-set-title {
  width: 100%;
  font-family: Saira, "Trebuchet MS", Helvetica, sans-serif;
  color: white;
  font-size: 18pt;
  padding: 10px 20px 10px 20px;
}

.skill-set-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
  padding: 10px 20px 20px 20px;
  width: 100%;
}

@media only screen and (max-width: 600px) {
  .skill-set-list {
    justify-content: center;
  }
}
.skill-set-list > img {
  height: 100px;
  transition: 0.3s;
  filter: drop-shadow(0 0 15px rgba(108, 130, 196, 0.47));
}

.skill-set-list > img:hover {
  transform: scale(1.1);
}
