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

@font-face {
  font-family: 'Neue Haas Display';
  src: url('fonts/NeueHaasDisplayMediu.ttf') format('ttf');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neue Haas Display';
  src: url('fonts/NeueHaasDisplayLight.ttf') format('ttf');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --red: #E73F28;
  --gray: #323232;
  --grayest: #5B5B5B;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 14px;
}

body {
  font-family: 'Neue Haas Display', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #333;
  background-color: var(--red);
}

header {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
}

header h2 {
  font-size: 3.5rem;
  text-transform: uppercase;
  text-align: center;
  font-weight: 300;
  margin: 0;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 36px;
  min-height: calc(100vh - 220px);
  background-color: var(--gray);
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
}

main svg {
  margin-top: 36px;
  width: 180px;
}

main ul.contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--red);
  padding: 1rem 2rem;
  border-radius: 10px;
}

main ul.contact li {
  font-weight: bold;
  color: var(--red);
  font-size: 1rem;
}

main ul.contact li a {
  color: white;
  text-decoration: none;
 }

 main ul.contact li a span.gap {
  padding-left: 1.3rem;
 }

footer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  font-size: 1rem;
  height: 100px;
  background-color: var(--gray);
}

footer p {
  color: var(--grayest)
}

@media screen and (max-width: 768px) {
  header {
    height: 80px;
  }

  header h2 {
    font-size: 2rem;
  }

  main {
    height: calc(100vh - 160px);
    gap: 0px;
  }

  main ul.contact {
    padding: 1rem 1.5rem;
  }

  footer {
    height: 80px;
  }
}