*, *::before, *::after {
  margin: 0;
  padding: 0;
  border: none;
  box-sizing: border-box;
  text-decoration: none;
}

html {
  color: #1a1a1a;
  font-size: 10px;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  background-color: #BD1237;
}

body {
  background-color: #efefef;
  background-image: linear-gradient(#efefef, #bbb);
  font-size: 1.6rem;
}

a {
  color: #BD1237;
}

a:hover, a:focus {
  color: #900;
}

a.button {
  background-color: #BD1237;
  border-radius: 2rem;
  color: white;
  padding: 1rem 2rem;
  text-transform: uppercase;
  font-size: 1.3rem;
  font-weight: 400;
}

a:hover.button {
  background-color: #900;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 300;
}

.content {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  justify-content: center;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
  border-top: 1rem solid #BD1237;
}

.logo {
  width: 384px;
  max-width: 50vw;
  transition: all 250ms ease-in-out;
}

.logo:hover {
  filter: brightness(0.8);
}

.red {
  color: #BD1237;
}

.text-upper {
  text-transform: uppercase;
}