@font-face {
    font-family: 'Poppins';
    font-weight: 300;
    src: url('fonts/poppins/Poppins-Light.ttf') format('truetype');
}

@font-face {
    font-family: 'Poppins';
    font-weight: 400;
    src: url('fonts/poppins/Poppins-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Poppins';
    font-weight: 500;
    src: url('fonts/poppins/Poppins-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'Poppins';
    font-weight: 700;
    src: url('fonts/poppins/Poppins-Bold.ttf') format('truetype');
}

body {
    display: flex;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    background-color: #121212;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
  	padding: 10px;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    padding: 10px 0px;
    margin: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(34,34,34,1) 25%, rgba(34,34,34,1) 50%, rgba(34,34,34,1) 75%, rgba(0,0,0,0) 100%);
    text-align: center;
}
h1 {
    font-size: 2em;
}
h2 {
    font-size: 1.5em;
}
h3 {
    font-size: 1.25em;
}
h4 {
    font-size: 1em;
}
#step-1, #step-2, #step-3 {
    margin: 10px;
}
.step-1-main {
    min-height: 50vh;
    align-items: center;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
}
.container {
    max-width: 500px;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
#tagline {
    font-size: 2em;
    padding: 10px;
    background: rgb(0,0,0);
    background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(34,34,34,1) 25%, rgba(34,34,34,1) 50%, rgba(34,34,34,1) 75%, rgba(0,0,0,0) 100%);
}
.logo {
    font-size: 3em;
}
.hidden {
    display: none;
}
.centered {
    text-align: center;
}
.input-field input[type=text] {
    color: #ffffff;
    font-family: inherit;
}
.input-field input[type=text]:focus + label {
    color: #ffffff;
}
.input-field .prefix.active {
    color: #ffffff;
}
.input-field input[type=text]:focus {
    border-bottom: 1px solid #ffffff;
    box-shadow: 0 1px 0 0 #ffffff;
}
.faq {
    margin-top: 50px;
}
.faq h2{
  font-size: 2em;
  padding: 10px;
  border-bottom: 1px solid white;
  text-align: center;

}

.collapsible-header {
  text-align: left;
}

.collection {
    border-radius: 8px;
    margin: 10px 0px;
}
.collection:empty {
    display: none;
}
.collection .collection-item {
    color: #ffffff;
    background-color: transparent;
    position: relative;
}
.collection-item .btn-flat {
    color: #ffffff;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.btn, .btn:hover, .btn:focus {
    background-color: #ff5722;
    font-family: inherit;
    border-radius: 8px;
    margin: 5px;
    padding: 0 10px;
    min-width: 64px;
}
.btn:first-child {
    margin-left: 0px;
}
.btn:last-child {
    margin-right: 0px;
}
.card {
    background-color: #333333;
    border-radius: 8px;
    margin: 10px -10px;
    border: 1px solid white;
}
h2.card-title {
    margin-top: 8px;
}
.bar {
    height: 10px;
    width: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
}
.list-item-wrapper {
    position: relative;
    padding: 10px;
}
.action-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.completed-task {
    text-decoration: line-through;
}

.collapsible {
	border: 1px solid white;
  	background-color: #222222;
    border-radius: 8px;
  	margin: 30px -10px;
  	margin-top: 20px;
}

.collapsible-header {
	background: transparent;
  	margin-top: 10px;
  	margin-bottom: 0px;
  	font-size: 2em;
  	border-bottom: 0;
  	border-top: 0;
	text-decoration: underline;
  	text-underline-offset: 5px;
    text-decoration-thickness: 2px;
}

.collapsible-body {
  	padding: 1rem;
}

footer {
    border-top: 1px solid #ffffff;
    margin-top: 50px;
    padding-top: 10px;
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    justify-content: space-between;
}

footer a {
    color: #ffffff;
}

.tip {
    background-color: #E57373;
    margin: -10px;
    padding: 10px;
}