/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body,
html {
  font-family: "Jost", sans-serif;
  height: 100%;
}

.container {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  height: 100vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/t-shirt_back.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.container .mainLogo {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  height: 40vh;
  z-index: 1;
}

@media (max-width: 565px) {
  .container .mainLogo {
    height: 35vh;
  }
}

.container .mainLogo img {
  width: 550px;
}

@media (max-width: 565px) {
  .container .mainLogo img {
    width: 350px;
  }
}

@media (max-width: 400px) {
  .container .mainLogo img {
    width: 250px;
  }
}

.container .mainHeading {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.container .mainHeading h1 {
  text-align: center;
  color: #c7c5c5;
  font-size: 36px;
  padding-top: 15px;
}

@media (max-width: 1100px) {
  .container .mainHeading h1 {
    font-size: 60px;
  }
}

@media (max-width: 920px) {
  .container .mainHeading h1 {
    font-size: 40px;
  }
}

.container .alert {
  display: flex;
  flex-direction: column;
  flex: 2;
  align-items: center;
  justify-content: center;
}

.container .alert h6 {
  font-weight: 300;
  font-style: italic;
  text-align: center;
  font-size: 20px;
  color: #c7c5c5;
  padding: 15px;
  max-width: 750px;
}

@media (max-width: 565px) {
  .container .alert h6 {
    font-size: 20px;
  }
}

@media (max-width: 400px) {
  .container .alert h6 {
    font-size: 15px;
  }
}

.container .orderLink {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  padding-top: 25px;
}

.container .orderLink a {
  color: #c7c5c5;
  font-size: 38px;
}

@media (max-width: 565px) {
  .container .orderLink a {
    font-size: 20px;
  }
}

@media (max-width: 400px) {
  .container .orderLink a {
    font-size: 15px;
  }
}

.container .contact {
  display: flex;
  flex: 1;
  justify-content: space-around;
  align-items: center;
  flex-direction: row;
}

.container .contact a {
  color: #c7c5c5;
  font-size: 14px;
  padding: 5px 10px;
  text-decoration: none;
}

.container .location a {
  font-size: 20px;
}

.container .phone a {
  font-size: 18px;
}

.container .socialLinks {
  display: flex;
  flex: 1;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}

.container .socialLinks a {
  font-size: 20px;
  color: #c7c5c5;
}

.row {
  display: flex;
  flex: 2;
  flex-direction: row;
}

svg {
  color: #c7c5c5;
}
/*# sourceMappingURL=styles.css.map */