@font-face {
  font-family: "roboto";
  src: url(/Fonts/Roboto/Roboto-Light.ttf);
}
@font-face {
  font-family: "caveat";
  src: url(/Fonts/Caveat/Caveat-VariableFont_wght.ttf);
}
@font-face {
  font-family: "quicksand";
  src: url(/Fonts/Quicksand/Quicksand-VariableFont_wght.ttf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: roboto;
  /* border: 2px;
  border-style: dotted;
  border-color: hotpink; */
  background-color: rgb(0, 0, 0);
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  height: 200px;
}

.logo {
  width: auto;
  height: 90%;
  padding-bottom: 15px;
}

h1 {
  color: white;
  font-family: quicksand;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0);
  font-size: 3vh;
  transition: 0.3s;
}

@media all and (min-width: 500px) {
  h1:hover {
    color: hotpink;
    font-size: 3.5vh;
  }
}

.main {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media all and (max-width: 500px) {
  .main {
    grid-template-columns: 1fr;
  }
}

.sectionMain {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

@media all and (min-width: 800px) {
  .main {
    margin-left: 50px;
    margin-right: 50px;
  }
}

@media all and (min-width: 1200px) {
  .main {
    margin-left: 200px;
    margin-right: 200px;
  }
}

@media all and (min-width: 1500px) {
  .main {
    margin-left: 400px;
    margin-right: 400px;
  }
}

@media all and (min-width: 2000px) {
  .main {
    margin-left: 600px;
    margin-right: 600px;
  }
}

.section {
  width: 300px;
  background-size: 100%;
  height: 200px;
  margin: 40px;
  border-radius: 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}

@media all and (max-width: 900px) {
  .section {
    margin: 10px;
    height: 200px;
    width: 200px;
  }
}

@media all and (max-width: 500px) {
  .section {
    margin: 10px;
    height: 300px;
    width: 300px;
  }
}

.section:hover {
  color: hotpink;
  font-size: 2rem;
}

.section--BG1 {
  background-size: cover;
  background-image: url(/pictures/DSCF8810.jpg);
}

@media all and (max-width: 900px) {
  .section--BG1 {
    background-image: url(/pictures/DSCF8814-2\ 2.jpg);
  }
}

.section--BG2 {
  background-image: url(/pictures/eventbild.JPG);
}

@media all and (max-width: 900px) {
  .section--BG2 {
    background-image: url(/pictures/IMG_3770.jpg);
  }
}

.section--BG3 {
  background-image: url(/pictures/foto_max.JPG);
}

@media all and (max-width: 900px) {
  .section--BG3 {
    background-image: url(/pictures/IMG_3772.jpg);
  }
}

.section--BG4 {
  background-image: url(/pictures/music.JPG);
}

@media all and (max-width: 900px) {
  .section--BG4 {
    background-image: url(/pictures/IMG_3775.jpg);
  }
}

.section--BG5 {
  background-image: url(/pictures/selfiemitkamera.JPG);
}

@media all and (max-width: 900px) {
  .section--BG5 {
    background-image: url(/pictures/IMG_3773.jpg);
  }
}

.section--BG6 {
  background-image: url(/pictures/selfiemitkamera.JPG);
}

@media all and (max-width: 900px) {
  .section--BG6 {
    background-image: url(/pictures/IMG_3776.jpg);
  }
}

.dark {
  background-color: rgba(0, 0, 0, 0.503);
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  text-decoration: none;
}

.dark:hover {
  background-color: rgba(0, 0, 0, 0.091);
}

@media all and (max-width: 500px) {
  .dark_focus {
    background-color: rgba(0, 0, 0, 0.091);
  }
}

.footer {
  margin-top: 20px;
  height: 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  background-color: rgb(65, 67, 68);
  color: rgb(225, 225, 225);
  font-size: 15px;
}

.footer__elements {
  background-color: rgb(65, 67, 68);
}

.footer__link {
  background-color: rgb(65, 67, 68);
  text-decoration: none;
  color: white;
  margin: 2px;
  font-size: 15px;
}

.footer__icons {
  width: 20px;
  background-color: rgba(240, 248, 255, 0);
}

.webdev {
  background-color: white;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  border-radius: 10px;
  margin: 15px;
}

.webdev_pictures {
  width: 100px;
  border-radius: 15px;
  margin: 5px;
}

.webdev_text {
  background-color: white;
  width: 200px;
  margin: 5px;
}

.div_web {
  background-color: white;
}
