/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
} 
a:link,
a:active,
a:visited,
a:hover {
  text-decoration: none;
  color: inherit;
}

h1 {
  font-size: 60px;
  border-bottom: 1px solid black;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

h2 {
  font-size: 36px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
h2 span {
  font-size: 50px;
}

section {
  font-family: Arial, Helvetica, sans-serif;
}
section h3 {
  font-size: 28px;
}
section h3 i {
  color: #d76700;
}
section h3 span {
  color: #d76700;
  font-size: 50px;
}
section p {
  font-size: 18px;
  width: 90%;
  max-width: 600px;
  text-align: center;
  margin: 15px auto;
}
section ul {
  font-size: 16px;
}

aside {
  height: 100vh;
  background-color: #e4cfcf;
  width: 40%;
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  gap: 90px;
  z-index: 800;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
}

main {
  width: 60%;
  right: 0;
  background-size: 60%;
  background-color: #ebebeb;
  background-repeat: no-repeat;
  background-position: 100% 0%;
  background-attachment: fixed;
  position: absolute;
}
main section {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ebebeb;
  margin-bottom: 400px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  gap: 30px;
  height: 520px;
}

.main1 {
  background-image: url(Bilder/profile2.webp);
  height: calc(70vh + 0px + 0px);
}

.main2 {
  background-image: url(Bilder/sky2_komp.jpg);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
  height: calc(70vh + 1040px + 800px);
  top: calc(70vh + 0px + 0px);
}

.main3 {
  background-image: url(Bilder/sky_komp.jpg);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
  height: calc(70vh + 520px + 800px);
  top: calc(70vh + 1040px + 800px);
}

header {
  height: 70vh;
  width: 100%;
}

footer {
  background-color: #e4cfcf;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0px;
  right: 0px;
  left: 0px;
}
footer ul {
  padding: 20px;
  display: flex;
  justify-content: center;
}
footer li {
  padding-left: 20px;
  padding-right: 20px;
}

@media (max-width: 800px) {
  aside {
    height: 30vh;
    width: 100%;
    gap: 10px;
  }
  aside .text__body {
    font-size: 16px;
  }
  main {
    width: 100%;
    top: 30px;
    right: 0;
    left: 0;
    background-size: 100%;
    background-position: 100% 30vh;
  }
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 16px;
  }
  h2 span {
    font-size: 26px;
  }
  h3 {
    font-size: 24px;
  }
  footer ul {
    padding: 10px;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  background-color: #ebebeb;
  font-family: "Playfair Display", serif;
  min-height: 50vh;
  display: flex;
  position: relative;
}

.fa-arrow-up {
  position: fixed;
  font-size: 80px;
  color: #d76700;
  z-index: 999;
  right: 30px;
  bottom: 30px;
}

.fa-arrow-up:hover {
  color: gray;
}

* {
  box-sizing: border-box;
}

@keyframes puls {
  from {
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.5));
    transform: scale(1);
  }
  to {
    filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.5));
    transform: scale(1.3);
  }
}
.socials img {
  width: 50px;
}

.img__container {
  display: flex;
  justify-content: center;
  height: 50%;
  width: 100%;
}
.img__container img {
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.5));
  height: 100%;
  width: 90%;
  transition: 0.2s linear;
  cursor: pointer;
  -o-object-fit: contain;
     object-fit: contain;
}
.img__container img:hover {
  transform: scale(1.05);
}

.img__container2 {
  gap: 40px;
}
.img__container2 img {
  width: 40%;
}

.popup_img {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
  background-color: rgba(0, 0, 0, 0.9);
  display: none;
}
.popup_img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
}
.popup_img span {
  font-size: 70px;
  position: absolute;
  right: 20px;
  padding: 10px;
  top: 0;
  font-weight: 800;
  cursor: pointer;
  color: white;
  z-index: 999;
}

.text__container {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 20px;
}

.text__header {
  font-size: 34px;
}

.text__body {
  font-size: 24px;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 400;
}

.skills {
  display: flex;
  gap: 20px;
  font-family: Arial, Helvetica, sans-serif;
}
.skills i {
  color: green;
}

.btn {
  background-color: #d76700;
  border: 1px solid black;
  border-radius: 5px;
  padding: 10px;
  width: -moz-fit-content;
  width: fit-content;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
}

@media (max-width: 800px) {
  .fa-arrow-up {
    font-size: 50px;
  }
  .img__container2 {
    gap: 10px;
  }
  .btn {
    border-radius: 5px;
    padding: 5px;
    font-size: 16px;
  }
  .text__container {
    gap: 10px;
  }
}/*# sourceMappingURL=stil.css.map */