:root {
  --transition-duration: 0.5s;
  --btn-dark-purple: #3d1389ff;
  --btn-light-purple: #753fdb;
}

.html-page {
  background-color: blanchedalmond;
}
.icon {
  background-color: #353546;
  color: lightgray;
}
.header-page {
  font-size: 150%;
  background-color: white;
  border-color: lightgray;
  color: darkslategrey;
  border: 10px groove;
  padding-top: 20px;
  margin-left: 100px;
  margin-right: 100px;
  margin-top: 50px;
  border-radius: 20px;
  text-shadow: 0.5px 0.5px 1px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.header-page li {
  margin-bottom: 2px;
}
.icon-header {
  height: 32px;
  width: 32px;
  border-radius: 16px;
  margin: 1px;
}
.icon-header- {
  height: 64px;
  width: 64px;
  margin: 0px;
  border-radius: 50%;
}
.dl-page {
  margin-left: 30px;
}
.frame {
  border: 4px solid burlywood;
  border-radius: 20px;
  padding: 2.5px 5px;
  display: inline-block;
  transition: background-color 0.71s, color 0.71s;
  box-shadow: 0 0 20px black;
}
.frame:hover {
  color: white;
  background-color: darkorange;
}
.continue {
  text-align: center;
  font-size: x-large;
  font-family: monospace;
  font-weight: bolder;
}
.body-div-page {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.circle-logo {
  width: 256px;
  height: 256px;
  margin-top: 75px;
  margin-left: 50px;
  margin-right: 50px;
  border-radius: 50%;
  border: 10px solid black;
  box-shadow: 0 0 40px darkgoldenrod;
}
.download {
  margin-left: 140px;
  text-decoration: none;
  border: 2px solid rgb(49, 49, 54);
  background-color: rgb(255 165 0);
  border-radius: 10px;
  transition: background-color 0.7s;
  color: 0.7;
  padding: 10px;
}
.download:hover {
  color: black;
  background-color: rgb(216, 171, 25, 0.26);
}

.ul-circle {
  text-align: center;
}

.html-index {
  background-color: #12121a;
  color: white;
  font-family: Arial, sans-serif;
}
.container {
  position: absolute;
  top: 25%;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  width: 500px;
  background-color: rgb(8, 8, 28);
  border-radius: 10px;
  box-shadow: 1px 5px 5px black;
}
.login-form {
  text-align: center;
  padding-bottom: 30px;
  padding-top: 20px;
}
.login-title {
  font-weight: 1400;
  font-size: 54px;
  padding: 20px;
}
.login-input-info {
  text-align: left;
  position: relative;
  left: 30px;
  font-weight: 1400;
  margin: 0;
}
input:not(:hover),
input {
  transition: var(--transition-duration);
  color: white;
  font-size: 28px;
  margin: 8px 0;
  background: var(--btn-dark-purple);
  border: 1px solid rgb(81, 10, 90);
  border-radius: 10px;
  outline: 0;
  width: 75%;
  padding: 0px;
}
input:hover {
  background: #753fdb;
}
.btn:not(:hover),
.btn {
  transition: var(--transition-duration);
  padding: 10px;
  border: 1px solid rgb(49, 49, 54);
  border-radius: 15px;
  background-color: transparent;
  color: var(--btn-light-purple);
  cursor: pointer;
}
.btn:hover {
  color: white;
  background: var(--btn-dark-purple);
}
button {
  display: block;
  margin: 0 auto;
}
button.download {
  display: block;
  margin: 0 auto;
  font-size: x-large;
  font-family: initial;
}
