@font-face {
  font-family: "Times";
  src: url("/font/times-new-roman.ttf") format("truetype");
  src: url("/font/times-new-roman-italic.ttf") format("truetype");
}

@font-face {
  font-family: "NHaas";
  src: url("/font/NHaasGroteskTXPro-65Md.ttf") format("truetype");
}

* {
  /* font-family: "Neue Haas Grotesk Text Pro", "Montserrat", sans-serif; */
  font-family: "NHaas", "Montserrat", sans-serif;
  padding: 0;
  margin: 0;
  overflow: hidden;
  /* box-sizing: content-box; */
}

html {
  /* font-size: 62.5%; */
  box-sizing: border-box;
  /* background-color: #ffbb00; */
  overflow: hidden;  
}

body {
  background-color: #a31621;
  color: #fff;
  box-sizing: content-box;
  overflow: hidden;
  height: 100vh;
  max-height: 100vh;

  /* grid */
  /* background-color: #e5e5f7; */
  /* opacity: 0.8; */
  /* background-image: linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
    linear-gradient(to right, rgba(0, 0, 0, 0.1) 1px, #a31621 1px);
  background-size: 20px 20px; */
}

#main {
  display: flex;
  position: relative;
  top: 30%;
  justify-content: center;
}

.container {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  /* max-width: 100%; */
}

h1 {
  font-size: 1.5rem;
  font-weight: 600;
}

#slogan {
  /* font-family: "Times New Roman", "Montserrat", sans-serif; */
  /* font-size: 3rem; */
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 500;
  text-align: center;
  padding: 1rem 2rem;
}

.times-italic{
  font-family: "Times", "Montserrat", sans-serif;
}

.normal {
  font-style: normal;
}

.newline{
  display: block;
}

.social {
  display: flex;
  margin-top: 2rem;
  gap: 2rem;
}

.email {
  margin-top: 2rem;
}

.email a {
  color: #fff;
  text-decoration: none;
}

@media only screen and (min-width: 768px){
  h1 {
    font-size: 3rem;
  }

  #slogan {
    font-size: 3rem;
  }

  .newline{
    display: inline;
  }
}