/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');

body {
  padding-top: 60px;
}

* {
  font-family: 'Open Sans', sans-serif;
}

h1 {
  font-size: 2.4rem;
  font-weight: 500;
}

h2 {
  text-align: center;
  font-size: 1.8rem;
  padding-bottom: 2rem;
}

p {
  font-size: 1rem;
}

hr {
  margin: 4rem 0;
}

h1 span {
  text-decoration: underline;
  font-weight: 600;
}
.navbar-brand span{
  text-decoration: underline;  
  font-weight: 600;
}

@media screen and (min-width:992px) {
  h1 {
    text-align: right;
    font-size: 3.6rem;
    font-weight: 500;
  }

  h2 {
    text-align: center;
    font-size: 2.4rem;
    padding-bottom: 2rem;
  }

  p {
    font-size: 1.2rem;
  }

  hr {
    margin: 5rem 0;
  }
}
.page-title p {
  font-size: .9rem;
}

.page-title {
  padding: 2rem 0 1rem;
}
@media screen and (min-width:360px) {
  .page-title p {
    font-size: 1.05rem;
  }
}
@media screen and (min-width:380px) {
  .page-title p {
    font-size: 1.1rem;
  }
}
@media screen and (min-width:992px) {
  .page-title p {
    font-size: 1.4rem;
  }
  .page-title {
    padding: 2rem 0;
  }
}


.card {
  border-radius: 0;
  height: auto;
}
.card-img {
  padding: 1rem 4rem 1rem;
  object-fit: contain;
  height: 200px!important;
}
.card h3 {
  text-align: center;
  font-size: 1.6rem;
  padding-bottom: 1rem;
}
.card p {
  font-size: .9rem;
}
@media screen and (min-width:992px) {
  .card {
    border-radius: 0;
    height: 560px;
  }
  .card-img {
    padding: 2rem 7rem 2rem;
  }
  .card h3 {
    text-align: center;
    font-size: 1.8rem;
    padding-bottom: 2rem;
  }
  .card p {
    font-size: 1rem;
  }
}


#portfolio img {
  border-radius: 100%;
  display: block;
}

.overlay-container {
  position: relative;
  width: 100%;
}
.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  border-radius: 100%;
  background-color: rgba(0,0,0,0.65);
}
.overlay-container:hover .overlay {
  opacity: 1;
}

.overlay-text {
  color: white;
  font-size: 2rem;
  font-weight: 400;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

@media screen and (min-width:992px) {
}

.user-cannot-see {
    display:none
}

.btn-primary, .btn-primary:hover {
  border-color: black;
  background-color: rgb(33, 37, 41);
}

.form-ok {
  text-align: center;
  color: #236101;
  font-weight: 500;
  font-size: 1.4rem;
}
.form-fehler {
  text-align: center;
  color: #610000;
  font-weight: 500;
  font-size: 1.4rem;
}



footer {
  margin-top: 5rem;
  padding: 4rem 0;
  background-color: rgb(33, 37, 41);
  color: white;
}

footer a, footer a:hover {
  color: white!important;
  text-decoration: none!important;
}

footer p {
  font-size: 1rem;
}
footer i {
  font-size: 2.4rem;
  padding: 0 .75rem;
}

.copyright {
  font-size: .8rem;
}
@media screen and (min-width:992px) {
  .copyright {
    font-size: .9rem;
  }
}