@import url('Montserrat-Medium.ttf');
@import url('NotoSans-Regular.ttf');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  font-family: 'Noto Sans', sans-serif;
}

.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px;
}

.newsletter {
  min-width: 20em;
  max-width: 30em;
  margin: 3em;
}

.main-logo {
  max-width: 90%;
  height: auto;
}

.footer {
  position: fixed;
  right: 10px;
  bottom: 10px;
  font-size: 0.8em;
}

h1 {
  font-family: 'Montserrat', sans-serif;
  margin-top: 2em;
  margin-bottom: 0.5em;

}


