/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
    font-family: Avenir;
    src: url(/fonts/Avenir-Roman.ttf)
}
@font-face {
    font-family: Avenir-Black;
    src: url(/fonts/Avenir-Black.ttf)
}

html, body {
    height: "100%";
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body {
  font-family: "Avenir", Sans-serif;
  color: #111;
  background-color: #dedede;
  text-align: center;
}

/* Hero Section */
.hero {
  background: url("images/header.png") center center / cover no-repeat;
  height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.65);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-box {
    padding: 20px 40px;
  border-radius: 8px;
  max-width: 300px;
}

.logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.headerbtn {
  margin-top: 1rem;
}

.logo-box img {
    scale: 200%;
    width: 100%;
    padding: 20px;
    background-color: #000000;
}

.brand {
  font-size: 1.8rem;
  letter-spacing: 2px;
  font-weight: 700;
}

.subline {
  margin: 0.5rem 0 1.5rem;
  font-size: 0.9rem;
  color: #ccc;
}

.button {
  background-color: #f45000;
  color: white;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  font-size: 0.9rem;
  letter-spacing: 1px;
  border-radius: 3px;
  display: inline-block;
  margin-top: 1rem;
}

/* Main Content */
.content {
  padding: 4rem 2rem;
  flex: 1;

}

.content h2 {
  font-size: 2.25rem;
  font-weight: 300;
  margin: 1rem;
}

.description {
  font-size: 1rem;
  color: #666;
  margin-bottom: .1rem;
}

/* Footer */
.footer {
  background-color: #111;
  color: white;
  padding: 2rem 1rem;
}

.footer p {
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.footer img {
  width: 15%;
  padding: 10px;
  
}