@import url("https://fonts.googleapis.com/css?family=Roboto:wght@300;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;800&display=swap");
body {
  margin: 0;
  background: black url("../images/lamborghini.jpg");
  background-attachment: fixed;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  font-family: Roboto,Helvetica Neue,Arial;
  font-size: 1.1em;
}

.wrapper {
  background: rgba(0, 0, 0, 0.7);
  max-width: 1000px;
  margin: 0 auto;
}

h1, h2, h3, h4, h5, h6 {
  text-transform: uppercase;
}

h1 {
  font-size: 2.8em;
  margin-top: 2em;
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: rgba(0, 0, 0, 0.9);
  padding: 1em 2em;
  position: relative;
}

header .logo {
  font-weight: bold;
  font-variant-caps: small-caps;
}

header .logo:hover {
  color: white;
}

header a {
  color: red;
  text-decoration: none;
  font-size: 1.2em;
}

header nav {
  position: absolute;
  right: 0;
}

header nav a {
  text-transform: uppercase;
  font-size: 1em;
  padding: 18px 2em;
}

header nav a.active {
  background: rgba(255, 255, 255, 0.6);
  color: black;
  border-bottom: 4px solid white;
}

header nav a:hover {
  background: rgba(255, 255, 255, 0.4);
  color: black;
  border-bottom: 4px solid red;
}

header ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.hero-bg {
  background: rgba(0, 0, 0, 0.6);
  height: 240px;
}

.hero-bg .hero-section {
  padding: 1em 2em;
}

.hero-bg .hero-section h1 {
  font-size: 4em;
}

.hero-bg .hero-section p {
  font-size: 1.2em;
  margin-top: 1em;
  margin-bottom: -7em;
}

.main-content {
  overflow: auto;
}

.main-content main {
  padding: 1em 2em;
  width: 65%;
  height: 100vh;
  float: left;
  background: rgba(128, 128, 128, 0.623);
}

.main-content main h2 {
  margin-top: 1em;
}

.main-content main p {
  line-height: 1.8em;
  text-align: justify;
  letter-spacing: 1.2px;
  margin-bottom: 2em;
  font-family: 'Montserrat';
}

.main-content main .front {
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 1em;
}

.main-content main .back {
  float: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 1em;
}

.main-content aside {
  padding: 1em 2em;
  width: 15%;
  height: 100vh;
  float: right;
  background: rgba(255, 255, 255, 0.6);
  color: black;
}

.main-content aside p {
  line-height: 1.8em;
  letter-spacing: -1px;
  font-family: 'Montserrat';
  font-size: large;
}

.main-content .image-container img {
  max-width: 800px;
  min-width: 600px;
  margin: auto;
  display: block;
}

footer {
  margin: 0 auto;
  margin-top: 3.5em;
  padding: 4em;
  text-align: center;
  font-size: .8em;
  background: rgba(0, 0, 0, 0.9);
}

footer img {
  margin-top: 1em;
  width: 100px;
}

footer a {
  text-decoration: none;
  color: white;
}

footer a:hover {
  text-decoration: underline;
  -webkit-text-decoration-color: red;
          text-decoration-color: red;
}
/*# sourceMappingURL=main.css.map */