@import url('https://fonts.googleapis.com/css2?family=Amarante&family=Fira+Sans&family=Lato:wght@300;400&family=Open+Sans:wght@300&display=swap');
@font-face {
  font-family: 'Addington CF';
  src: url('./fonts/AddingtonCF-Light.otf');
  font-weight: 300;
}
@font-face {
  font-family: 'Addington CF';
  src: url('.public/fonts/AddingtonCF-BoldItalic.otf');
  font-weight: 700;
  font-style: italic;
}

* {
  box-sizing: border-box;
}

:root {
  --font-lato: 'Lato', sans-serif;
  --border-radius-4: 4px;
}

body {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: center;
  align-items: center;
  background-color: #fcf3ec;
  font-family: 'Addington CF', serif;
  overflow-x: hidden;
  height: 100vh;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
label, 
input {
  font-family: var(--font-lato);
  font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

h1 {
  font-size: 2rem;
}

svg,
label,
input {
  display: block;
}

svg {
  width: 200px;
  margin: auto;
}

h1 {
  text-align: center;
}

p {
  text-align: center;
  max-width: 500px;
  margin: 1rem auto;
}

a {
  color: black;
}

a:hover {
  color: rgb(0, 0, 205);
}


input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.wrapper {
  width: 85%;
  margin: auto;
}

#logo-wrapper {
  margin: 0 auto 5rem auto;
}

@media (min-width: 400px) {
  h1 {
    font-size: 3rem;
  }
}
