/* CSS Reset */
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;
}

/* Add your own CSS reset styles here */

.main {
  background-image: url('assets/Hub_Coffees_small.jpg');
  background-color: #352e28;
  min-height: 100vh; /* Set the height to 100% of the viewport height */
  width: 100%; /* Set the width to 100% */
  background-size: cover;
  color: white;
  padding: 30px 0 30px 0;
  display: grid;
  font-family: Helvetica, sans-serif;

  @media (max-width: 480px) {
    background-position: center;
  }
}

.homeContainer {
  display: grid;
  row-gap: 30px;
  /* border: 1px solid red; */
  justify-self: center;
  align-self: center;
  max-width: 70%;
  margin: 20px;

  @media (max-width: 1000px) {
    max-width: 100%;
    padding: 0 50px 0 50px;
    margin: 0;
  }
}

.emoji {
  @media (max-width: 1000px) {
    display: none;
  }
}

.title {
  text-align: center;
  padding-top: 30px;
}

h1 {
  font-size: 4vmax;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
}

h2 {
  font-size: 3vmax;
}

p,
.text {
  font-size: 30px;
  letter-spacing: 1px;

  @media (max-width: 1032px) {
    font-size: 3vmax;
  }
}

p:not(:first-child) {
  padding-top: 30px;

  @media (max-width: 1032px) {
    padding-top: 30px;
  }
}

a {
  color: white;
}

a:visited {
  color: white;
}

a:hover {
  color: yellow;
}

.logo {
  justify-self: center;
  width: 300px;
}

.border {
  border: 1px solid;
}

.signOff {
  text-align: right;
  margin-top: 40px;
}

.thanks {
  font-weight: 800;
  text-align: center;
  padding-bottom: 20px;
}

.contact {
  padding-top: 30px;
  display: grid;
  justify-items: center;
}

#googleMapsLink {
  display: block;
}

#phone {
  margin-top: 20px;
}

#phone a {
  text-decoration: none;
}

/* #update {
  text-align: center;
} */
