/*
*   Script: style.css
*   Date: 01.09.2024
*   Copyright: Artcom-engineering 2024 - all right reserved.
*/

body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
}

.section {
  padding: 60px 0;
}

.pt-6 {
  padding-top: 4rem !important;
}

.email-link {
  color: #cccccc !important;
}

.navbar {
  background-color: transparent;
  transition: background-color 0.4s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 2px -2px gray;
}

p {
  font-size: 1rem;
  color: #cccccc;
}

.project-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  text-align: center;
  padding: 1rem;
  box-sizing: border-box;
  order: 2;
}

.project-text h4 {
  margin-bottom: 1rem; /* distance between h4 und p */
}

.project-text p {
  margin: 0;
  font-size: 1rem;
  color: #cccccc;
}

.masthead {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 20rem;
  padding: 10rem 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 75%, #000 100%), url("../assets/img/mountain.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}