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 {
  background: url(../images/building.jpg) no-repeat center;
  background-size: cover;
  min-height: 100vh;
  height: 100svh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
body::before {
  content: '';
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
}
.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  padding-bottom: 80px;
}
.content .img {
  width: 300px;
  margin-bottom: 14px;
}
.content .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.content h4 {
  color: white;
  font-size: 14px;
  font-family: 'Courier New', Courier, monospace;
  margin-bottom: 30px;
}
.content .divider {
  width: 20px;
  height: 1px;
  background-color: white;
  margin-bottom: 30px;
}
.content .contact-wrap {
  display: flex;
  gap: 10px;
  align-items: center;
}
.content .contact-wrap a {
  text-decoration: none;
  color: black;
  background-color: #ffffff;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 14px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  letter-spacing: 0.05em;
}
@media (max-width: 480px) {
  .content {
    padding-bottom: 40px;
  }
  .content .img {
    width: 200px;
    margin-bottom: 10px;
  }
  .content h4 {
    font-size: 10px;
    margin-bottom: 20px;
  }
  .content .divider {
    margin-bottom: 30px;
  }
  .content a {
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    letter-spacing: 0.05em;
  }
}
