/*!**********************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/pages/home.css ***!
  \**********************************************************************/
.attester {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 20px;
  font-weight: 300;
  margin-top: 10px;
}

.join {
  width: 260px;
  margin: 20px 0;
  text-align: center;
}

.bg {
  position: absolute;
  right: 0px;
  z-index: 0;
}

/*!******************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/components/tooltip.css ***!
  \******************************************************************************/
.tooltip-outer {
  position: relative;
}

.tooltip-popup {
  padding: 12px;
  background: black;
  z-index: 100000;
  position: absolute;
  border-radius: 8px;
  display: flex;
}

.tooltip-inner {
  font-size: 12px;
  font-weight: normal;
  line-height: 20px;
  color: #a0d8db;
}

/*!*****************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/components/button.css ***!
  \*****************************************************************************/
.button-outer {
  display: flex;
  justify-content: left;
  align-items: center;
  user-select: none;
}

.button-inner {
  border-radius: 8px;
  cursor: pointer;
  font-weight: 300;
  user-select: none;
  text-align: center;
  background-color: #a0d8db;
  padding: 4px 8px;
  -webkit-user-select: none;
  -ms-user-select: none;
}

/*!************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/pages/header.css ***!
  \************************************************************************/
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 10px 10px 0 10px;
}

.links {
  display: flex;
}

.title {
  font-weight: bold;
  font-size: 24px;
}

@keyframes fadeinfromleft {
  from {
    opacity: 0%;
    max-width: 0px;
  }
  50% {
    opacity: 0%;
    max-width: 40px;
  }
  to {
    opacity: 100%;
    max-width: 40px;
  }
}

/*!*************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/pages/welcome.css ***!
  \*************************************************************************/
.header1 {
  font-size: 2rem;
  font-weight: 400;
}

.header2 {
  font-size: 1.5rem;
  font-weight: 400;
}

.header3 {
  font-size: 1.25rem;
  font-weight: 400;
}

.hdivider {
  height: 1px;
  background: black;
  margin: 1rem;
}

/*!*****************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/index.css ***!
  \*****************************************************************/
body {
  font-family: helvetica, sans-serif;
  /*font-family: 'Azeret Mono';*/
  font-weight: 200;
  max-width: 1000px;
  margin: auto;
  margin-top: 0px;
  margin-bottom: 0px;
}

#root {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

code {
  display: block;
  white-space: pre-wrap;
  word-break: break-all;
  border: 1px solid gray;
  padding: 2px;
  color: black;
}

.container {
  display: flex;
  flex-direction: column;
  flex: 1;
  bottom: 0px;
  margin: 10px 10px 0 10px;
}

