body {
  font-family: "Roboto", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: #eee;
}
.container {
  text-align: center;
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  width: 400px;
}

.keyIconHeader {
    display: block;
    position: absolute;
    float: left;
    width: 50px;
    height: 50px;
}

select,
.generateBtn {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.generateBtn {
  background-color: #6200ea;
  color: white;
  border: none;
}
.generateBtn:hover {
  background-color: #3700b3;
}

.copyBtn {
  width: 40px;
  height: 40px;
  margin-top: 10px;
  float: right;
}

.result {
  margin-top: 20px;
  padding: 10px;
  background-color: #f0f0f0;
  border-radius: 4px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.label {
  height: 40px;
  margin-top: 18px;
  float: left;
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: #fff;
  padding: 15px;
  text-align: center;
}

.footnote {
  margin-top: 0;
  font-style: italic;
  font-weight: lighter;
  color: gray;
}

a {
  text-decoration: none;
  color: #3700b3;
}

a:visited {
  color: #3700b3;
}
