:root {
  --primary: #bb2200;
  --secondary: #661100;
  --text: #222222;
  --white: #ffffff;
}

body {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  line-height: 1.5;
  text-align: center;
  color: var(--text);
}

img {
  max-width: 100%;
}

header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100px;
  box-shadow: 0 0 5px var(--secondary);
}

main {
  display: block;
  flex: 1;
  padding: 8px 20px;
}

footer {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 80px;
  margin-top: auto;
  color: var(--white);
  background-color: var(--secondary);
}

.logo {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 180px;
  margin: 8px 0 0;
}

.logo__housetop {
  width: 0;
  height: 0;
  border-bottom: 3rem solid var(--primary);
  border-left: 3rem solid transparent;
  border-right: 3rem solid transparent;
}

.logo h1 {
  margin: -8px 0 0;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.logo h1 span {
  text-transform: uppercase;
}

.phone {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}
@media all and (max-width: 640px) {
  .phone {
    display: none;
  }
}

.content {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1.25rem;
  text-align: left;
}

.copyright {
  font-size: 0.75rem;
}
