body,h1,h2,h3,h4,h5,h6 {font-family: "Lato", sans-serif;}
body, html {
  height: 100%;
  color: whitesmoke;
  line-height: 1.8;
}

/* If the screen size is 601px wide or more, set the font-size of <div> to 80px */
@media screen and (min-width: 601px) {
  div.main {
    font-size: 24px;
  }
}

/* If the screen size is 600px wide or less, set the font-size of <div> to 30px */
@media screen and (max-width: 600px) {
  div.main {
    font-size: 15px;
  }
}

.nav-container {
	width: 100%;
	/* left: 50%; */
    /* transform: translateX(-50%); */
    /* top: 1rem; */
}

.display-flex{
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-container{
    background-color: rgba(44, 44, 44, 0.75);
    padding: 2rem;
    border-radius: 3rem;
    /* opacity: 0.75; */
    box-shadow: 10px 10px 23px -7px rgba(0,0,0,0.49);
    -webkit-box-shadow: 10px 10px 23px -7px rgba(0,0,0,0.49);
    -moz-box-shadow: 10px 10px 23px -7px rgba(0,0,0,0.49);
}
.content-container img {
    background-color: black;
    opacity: 1;
}
.content-container h3 {
    color: whitesmoke;
    opacity: 1;
}
a.w3-button{
    color: whitesmoke;
}

/* Create a Parallax Effect */
.bgimg-1, .bgimg-2, .bgimg-3 {
    opacity: 0.75;
    background-attachment: fixed;
    /* background-position: center; */
    background-position-x: center;
    background-position-y: 30%;
    background-repeat: no-repeat;
    background-size: cover;
}

/* First image (Logo. Full height) */
.bgimg-1 {
  background-image: url('/img/modeal_audi.jpg');
  min-height: 100%;
}

/* Second image (Portfolio) */
.bgimg-2 {
  background-image: url("/img/modeal_audi.jpg");
  min-height: 400px;
}

/* Third image (Contact) */
.bgimg-3 {
  background-image: url("/img/modeal_audi.jpg");
  min-height: 400px;
}

.w3-wide {letter-spacing: 10px;}
.w3-hover-opacity {cursor: pointer;}

/* Turn off parallax scrolling for tablets and phones */
@media only screen and (max-device-width: 1600px) {
  .bgimg-1, .bgimg-2, .bgimg-3 {
    background-attachment: scroll;
    min-height: 100%;
  }
}