@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700&display=swap");
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;
  font-family: "Lato", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(images/bg.jpg) no-repeat top center / cover;
	background-color: #000;

  height: 100vh;
}
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;
}
* {
  box-sizing: border-box;
}
.contact svg {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}
.content {
  height: 100vh;
  width: 100%;
  padding: 40px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  
}
.content h1 {
  color: #000;
  font-size: 70px;
  font-weight: 300;
	margin-bottom: 0px;
}

.content h3 {
  color: #000;
  font-size: 20px;
	margin-top: 20px;
  font-weight: 300;
}
.logo {
  max-width: 280px;
  width: 90%;
}
.logo img {
  width: 100%;
}
.contact {
  width: 100%;
  background: rgba(0, 0, 0, 1);
  padding: 20px 10px;
}
.contact h2 {
  color: #fff;
  font-size: 30px;
  margin-bottom: 10px;
  text-align: center;
}
.contact span {
  display: flex;
  color: #fff;
  font-size: 18px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 690px) {
  .content h1 {
    font-size: 12vw;
  }
}
