/* open-sans-regular - latin */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: local(""),
    url("../fonts/open-sans-v34-latin-regular.woff2") format("woff2"),
    /* Chrome 26+, Opera 23+, Firefox 39+ */
      url("../fonts/open-sans-v34-latin-regular.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

:root {
  font-family: "Open Sans", Arial, sans-serif;
}

body {
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../images/background.jpg);
  background-size: cover;
  background-position: center;
}

.navigation-stripe {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  height: 2rem;
  width: 100%;
}

.stripe-left {
  width: 12%;
  background-color: #ba0c2f;
  height: 100%;
}
.stripe-middle {
  width: 5%;
  background-color: #9b9b9b;
  height: 100%;
}
.stripe-right {
  width: 13%;
  background-color: #565656;
  height: 100%;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: white;
  padding: 3rem 1rem;
  width: 45rem;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

.logo {
  width: auto;
}

.text {
  padding: 2rem 0;
  font-size: 20px;
}

.nav-button {
  text-transform: uppercase;
  background-color: #ba0c2f;
  color: white;
  border: none;
  padding: 0.625rem 3rem;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  text-decoration: none;
}
.nav-button:hover {
  background-color: #565656;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  main {
    width: 90%;
    padding: 2rem;
  }
  .text {
    font-size: 14px;
  }
  .logo {
    width: 70%;
  }
  .nav-button {
    font-size: 14px;
  }
}
