html {
  margin: 0;
  font-size: 12px;
  background: #fefefe;
}

body {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin: 0;
  overflow: hidden;
}

header {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  
}

footer {
  width: 100%;
  background-color: #005756;
  color: white;
}

.viewport {
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.content {
  width: 100%;
  height: auto;
  max-width: 1024px;
  padding: 12px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

}

.footer_content {
  width: 100%;
  max-width: 1024px;
  padding: 12px 24px;
  margin: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  
}

button {
  font-family: Montserrat;
  border: none;
  border-radius: 18px;
  background-color: #005756;
  font-size: 10px;
  padding: 9px 18px;
  color: white;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 2px;
  margin: 12px 0;
  box-shadow: none;
}

button.small {
  font-family: Montserrat;
  border-radius: 12px;
  background-color: #005756;
  font-size: 9px;
  padding: 6px 12px;
  color: white;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 1px;
  margin: 6px 0;
}

button:disabled {
  background-color: #efefef;
  color: grey;
  cursor: default;
}