@import url('reset.css');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
  --color--background: #000;
  --color--text: #fff;
  --color--primary: #FFB600;
}

body {
  font-size: 100%;
  background-color: var(--color--background);
  color: var(--color--text);
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.button {
  background-color: var(--color--primary);
  color: var(--color--background);
  padding: .625rem 1rem;
  border-radius: 2rem;
  display: inline-block;
  text-decoration: none;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  transition: all 150ms ease;
}

.button:hover {
  background-color: var(--color--text);
}

.button > .content {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.button .ico {
  margin-right: .625rem;
}

.hero {
  width: 100vw;
  height: 100vh;
  background-image: url(../images/hero.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 7.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}

.hero > .content {
  width: 33%;
  min-width: 320px;
  text-align: center;
}

.hero .logo {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: table;
  margin-left: auto;
  margin-right: auto;
}

.hero .tagline {
  font-size: 1rem;
  margin-top: 2em;
  margin-bottom: 2em;
}

.hero .title {
  text-transform: uppercase;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero .social {
  margin-top: 2rem;
}

.hero .social-ico {
  display: inline-block;
}

@media screen and (max-width: 960px) {
  .hero {
    position: relative;
    padding: 2.5rem;
    background-position-x: 40%;
  }

  .hero::before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: var(--color--background);
    opacity: .7;
    position: absolute;
    top: 0;
    left: 0;
  }

  .hero > .content {
    width: 100%;
    min-width: none;
    position: relative;
    z-index: 2;
  }
}
