@charset "UTF-8";
/* Ein Reset basierend auf Andy Bell (https://piccalil.li/blog/a-more-modern-css-reset/) */
/* Box sizing Regeln */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Scrollbar-Reset für Webkit-Browser (Chrome, Safari) */
::-webkit-scrollbar {
  width: 8px; /* Breite des Scrollbalkens */
  height: 8px; /* Höhe des Scrollbalkens für horizontale Scrollbalken */
}

::-webkit-scrollbar-track {
  background: #f1f1f1; /* Hintergrund der Scrollbar-Spur */
}

::-webkit-scrollbar-thumb {
  background: #888; /* Farbe des Scrollbar-Daumens */
  border-radius: 4px; /* Abrundung des Daumens */
}

::-webkit-scrollbar-thumb:hover {
  background: #555; /* Farbe des Daumens beim Hover */
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  /* Setzt die Basis für `rem`-Einheiten. 1rem wird 20px entsprechen. */
  font-size: 20px;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, h5, h6, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

/* Entferne Standard-Margins und Paddings für alle Elemente */
* {
  margin: 0;
  padding: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list],
ul, ol { /* Auch für alle ul, ol Elemente */
  list-style: none;
  list-style-type: none; /* Stellt sicher, dass alle Listenzeichen entfernt werden */
  margin: 0;
  padding: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased; /* Für bessere Schriftglättung */
  font-size: 1rem; /* Alle Texte im Body nutzen die 20px aus html */
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4, h5, h6,
button, input, label {
  line-height: 1.1;
  text-wrap: balance; /* Textumbruch auf Überschriften ausgleichen */
  font-size: 1rem; /* Überschriften erhalten ebenfalls die 20px */
}

/* Make images easier to work with */
img,
picture,
video,
canvas,
svg {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit; /* Erbt die Schriftgröße von seinen Eltern (standardmäßig 20px) */
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Zusätzlicher Reset für Absätze und andere Textblöcke */
p, li, blockquote, dd, dt, figcaption {
  font-size: 1rem; /* Stellt sicher, dass diese Elemente auch 20px haben */
}

@media (prefers-color-scheme: dark) {
  body {
    background-color: #14121d; /* Dark gray background */
    color: #ffffff; /* White font color */
  }
  mark {
    color: #222;
    background-color: #e6e6e6;
  }
}
@media (prefers-color-scheme: light) {
  body {
    background-color: #fff; /* Dark gray background */
    color: #000; /* White font color */
  }
  mark {
    background-color: #222;
    color: #e6e6e6;
  }
}
.grid-lg-col-1-5 {
  grid-column: 1/5;
}

.grid-lg-col-6-13 {
  grid-column: 6/13;
}

.grid-lg-col-full-width {
  grid-column: 1/13;
}

mark {
  padding: 2px 4px;
  font-size: 80%;
  border-radius: 3px;
}

@media (max-width: 768px) {
  .grid-sm-full-width {
    grid-column: 1/13;
  }
}
header {
  width: 100%;
  margin-bottom: 40px;
}

#contact {
  margin-bottom: 40px;
}
#contact ul {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: end;
}

.portrait-wrapper {
  aspect-ratio: 1/1;
}

#portrait {
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center top;
  overflow: hidden;
}

.about {
  text-align: justify;
}
.about h1 {
  margin-bottom: 20px;
  text-align: left;
}

@media (max-width: 768px) {
  .owner {
    margin-bottom: 20px;
  }
}
main > section {
  grid-column: 1/13;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}
main > section > * {
  grid-column: 1/13;
}
main > section h2 {
  margin-bottom: 20px;
  text-align: left;
}

.education-item {
  grid-column: 1/13;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  margin-bottom: 20px;
}
.education-item > * h3 {
  margin-bottom: 20px;
}
.education-item .education-details {
  text-align: justify;
}

.education-item:last-child {
  margin-bottom: 0;
}

.project {
  grid-column: 1/13;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 2;
  margin-bottom: 20px;
}
.project .carousel-container {
  grid-row: 1/2;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  align-items: top;
  margin-bottom: 20px;
  min-height: 200px;
  max-height: 300px;
  overflow: hidden;
}
.project .carousel-container img {
  max-height: 300px;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  grid-row: 1/2;
  grid-column: 1/2;
}
.project .carousel-container .carousel-nav {
  grid-row: 1/2;
  grid-column: 1/2;
  width: 100%;
  align-self: end;
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  padding-bottom: 10px;
}
.project .carousel-container .carousel-nav .nav-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(136, 136, 136, 0.8);
  border-color: transparent;
  box-shadow: 0 0 4px rgba(136, 136, 136, 0.8);
}
.project .carousel-container .carousel-nav .active-dot {
  border: white 2px solid;
}
.project .carousel-container .project-technologies {
  grid-row: 2/3;
}
.project .project-title {
  grid-row: 2/3;
}
.project .project-description {
  grid-row: 1/2;
  text-align: justify;
}

@media (max-width: 768px) {
  .education-item .education-meta {
    margin-bottom: 5px;
  }
  .education-item .education-meta p {
    font-size: 80%;
  }
  .education-item .education-details {
    text-align: left;
  }
  .project {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    margin-bottom: 20px;
  }
  .project img {
    margin-bottom: 20px;
  }
  .project h3 {
    grid-row: auto;
  }
  .project .project-description {
    grid-row: auto;
    text-align: left;
  }
  .project .carousel-container {
    margin-bottom: 20px;
  }
  .project .carousel-container img {
    margin-bottom: 0;
  }
  .project .project-technologies {
    margin-bottom: 20px;
  }
}
footer {
  width: 100%;
}
footer p {
  grid-column: 1/13;
  text-align: center;
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  max-width: 1440px;
  min-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

body > * {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

/*# sourceMappingURL=style.css.map */