*{
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}
body{
    background-color: lightskyblue;
    color: white;
}


nav {
    background-color: dodgerblue;
    width: 100vw;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home_icon {
    cursor: pointer;
    font-size: 2rem;
    left: 0;
    position: absolute;
    top: 0;
    margin-top: 2rem;
    margin-left: 1rem;
    color: white;
}

/*set position to left or right and position to aboslute to make it stay there*/
.bars {
    cursor: pointer;
    font-size: 3rem;
    right: 0;
    position: absolute;
    padding-right: 1rem;
}

h1{
    font-size: 2.2rem;
}

.pass-container {
    padding-top: 1rem;
    width: 100vw;
    text-align: center;
}

.pass-input {
    font-size: 26px;
    width: 300px;
    border: none;
    border-radius: 8px;
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
}

.info-container {
    margin-top: 3rem;
    width: 100vw;
    height: 160px;
    display: block;
    text-align: center;
}

.info-holder {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    padding-bottom: 2rem;
}

.header2{
    padding-right: 12px;
}

.inpt {
    width: 30px;
    height: 30px;
    font-size: 22px;
    color: black;
    border-radius: 8px;
    border: none;
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
}

.btn-holder {
    width: 100%;
    height: auto;
}

.pad{
    margin-right: 1rem;
}

.gen-area {
    margin-top: 1rem;
    display: block;
    width: 100vw;
    text-align: center;
}

.disclaimer {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.check-container {
    padding-top: 1rem;
    width: 100vw;
    display: block;
}

.check-label {
    background: white;
    margin: 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    height: 40px;
}

.check-label p {
    color: black;
    padding-left: 1rem;
}

.check {
    height: 30px;
    width: 30px;
    right: 0;
    position: absolute;
    margin-right: 2rem;
}

footer {
    width: 100vw;
    height: 40px;
    /*bottom: 0;
    position: absolute;*/
    text-align: center;
    line-height: 40px;
    background-color: dodgerblue;
}

/* bars button */
.bars:active {
    color: #eee;
}

/* Add button */ 
.addButton {
	border-radius:42px;
	border:5px solid #fff;
    background: #fff;
	display:inline-block;
	cursor:pointer;
	color:#000;
	font-family:Arial;
	font-size:20px;
	padding:24px 18px;
	text-decoration:none;
}
.addButton:hover {
	border-color: #eee;
    background: #eee;
}
.addButton:active {
	position:relative;
	top:1px;
    background: #eee;
}

/* Sub Button */
.subButton {
	border-radius:42px;
	border:5px solid #fff;
	display:inline-block;
    background: #fff;
	cursor:pointer;
	color:#000;
	font-family:Arial;
	font-size:20px;
	padding:24px 18px;
	text-decoration:none;
}
.subButton:hover {
	border-color: #eee;
    background: #eee;
}
.subButton:active {
	position:relative;
	top:1px;
    background: #eee;
}

/* Generate button */
.gen-button {
    color: white;
    border-radius: 6px;
    border: 4px solid #fff;
    display: inline-block;
    cursor: pointer;
    font-family: Arial;
    font-size: 16px;
    padding: 12px 40px;
    text-decoration: none;
    margin-right: .5rem;
}

.gen-button:hover {
    border-color: #eee;
}

.gen-button:active {
    position: relative;
    top: 1px;
}

/* Copy button */
.copy-button {
    color: white;
    border-radius: 6px;
    border: 4px solid #fff;
    display: inline-block;
    cursor: pointer;
    font-family: Arial;
    font-size: 16px;
    padding: 12px 50px;
    text-decoration: none;
    margin-left: .5rem;
}

.copy-button:hover {
    border-color: #eee;
}

.copy-button:active {
    position: relative;
    top: 1px;
}