/* GLOBAL */

html {
  height: 100%;
  scroll-behavior: smooth;
  scroll-margin: 60px;
}

body {
  margin: 0;
  background-color: #0FA3B1;
  font-family: FreeMono, monospace;
  overflow-x: hidden;
  font-size: 22px;
}

.container {
  width: 100vw;
  height: 500vh;
  display: grid;
  grid-template: 60px 200px repeat(30, 1fr) 80px / 30px repeat(12, 1fr) 30px;
  box-sizing: border-box;
  overflow: auto;

}

.header {
  width: 100%;
  height: 60px;
  position: fixed;
  background-color: #121268;
  color: #fff;
  text-align: end;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.logo {
  margin: 15px auto 15px 30px;
  padding: 0;
}

.title {
  grid-row: 1 /span 3;
  grid-column: 1 / 15;
  background-color: #F3E9E2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer {
  grid-row: 33 / 34;
  grid-column: 1 / 15;
  background-color: #121268;
}

/* NAVBAR*/

ul {
  list-style-type: none;
  margin: 0;
  margin-right: 20px;
  padding: 0;
  overflow: hidden;
  background-color: #121268;
  display: flex;
  justify-content: end;
}

li {
  float: left;
}

li a,
.dropbtn {
  display: inline-block;
  color: white;
  text-align: center;
  padding: 17px 16px;
  min-width: 122px;
  text-decoration: none;
}

li a:hover,
.dropdown:hover .dropbtn {
  background-color: #fff;
  color: #000;
}

li.dropdown {
  display: inline-block;
}

.dropdown-content {
  display: none;
  left: auto;
  position: absolute;
  min-width: 122px;
  z-index: 1;
  margin-top: -4px;
}

.dropdown-content a {
  color: #fff;
  background-color: #121268;
  right: 1px;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #fff;
  color: #000;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* INDEX */

.contentIndex1 {
  grid-row: 3 / span 4;
  grid-column: 3 / span 10;
  margin: 10px 10px 10px 10px;
  padding: 15px;
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  font-size: larger;

}

/* LEBENSLAUF */

.lebenslaufTitle {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.imgFace {
  float: right;
  padding: 10px 10px 30px 30px;

}

.contentLebenslauf1 {
  margin: 10px 10px 10px 10px;
  padding: 15px;
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  font-size: larger;
}

.contentLebenslauf2,
.contentLebenslauf3,
.contentLebenslauf4 {
  padding: 15px;
  margin: 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);

}

/* PROGRESSBARS */

.progressBars {
  grid-row: 17 / span 2;
  grid-column: 4 / span 8;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  z-index: -1;
}

.skillsTitle {
  color: #fff;
}

.progress1,
.progress2,
.progress3 {
  background: rgba(255, 255, 255, 0.1);
  justify-content: flex-start;
  border-radius: 100px;
  text-align: center;
  align-items: center;
  position: relative;
  padding: 0 5px;
  display: flex;
  height: 50px;
  width: 1100px;
  margin: 20px;
}

.progress-html,
.progress-css,
.progress-javascript {
  border-radius: 100px;
  background: #fff;
  height: 40px;
  margin: 5px;
  width: 0;
}

.progress-html {
  animation: html 3s normal forwards;
}

.progress-css {
  animation: css 3s normal forwards;
}

.progress-javascript {
  animation: javascript 3s normal forwards;
}

@keyframes html {
  0% {
    width: 0;
  }

  100% {
    width: 70%;
  }
}

@keyframes css {
  0% {
    width: 0;
  }

  100% {
    width: 60%;
  }
}

@keyframes javascript {
  0% {
    width: 0;
  }

  100% {
    width: 40%;
  }
}

/* HOBBYS STYLE */

.hobbysTitle {
  display: flex;
  justify-content: center;
  padding: 15px;
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.contentHobbys1,
.contentHobbys2,
.contentHobbys3 {
  padding: 15px;
  margin: 10px 10px 10px 0px;
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.imgHobbys1,
.imgHobbys2,
.imgHobbys3 {
  display: flex;
  justify-self: end;
  max-width: 100%;
  height: auto;
  margin: 10px 20px 10px 10px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/* LEBENSLAUF POSITION */

.lebenslaufTitle {
  grid-row: 8 / span 1;
  grid-column: 1 / span 14;
}

.contentLebenslauf1 {
  grid-row: 10 / span 6;
  grid-column: 3 / span 6;
}

.contentLebenslauf2 {
  grid-row: 10 / span 2;
  grid-column: 9 / span 4;
}

.contentLebenslauf3 {
  grid-row: 12 / span 2;
  grid-column: 9 / span 4;
}

.contentLebenslauf4 {
  grid-row: 14 / span 2;
  grid-column: 9 / span 4;
}

/* HOBBYS POSITION */

.hobbysTitle {
  grid-row: 21 / span 1;
  grid-column: 1 / span 14;
}

.contentHobbys1 {
  grid-row: 23 / span 2;
  grid-column: 5 / span 8;
}

.contentHobbys2 {
  grid-row: 26 / span 2;
  grid-column: 5 / span 8;
}

.contentHobbys3 {
  grid-row: 29 / span 2;
  grid-column: 5 / span 8;
}

.imgHobbys1 {
  grid-row: 23 / span 2;
  grid-column: 2 / span 3;
}

.imgHobbys2 {
  grid-row: 26 / span 2;
  grid-column: 2 / span 3;
}

.imgHobbys3 {
  grid-row: 29 / span 2;
  grid-column: 2 / span 3;
}