body {
  font-family: Arial, sans-serif;
  background-color: black;
  color: grey;
}

h1 {
  text-align: center;
  color: grey;
}

p {
  margin: 0;
}

a {
  color: rgb(71, 71, 255);
  font-family: helvetica;
  text-decoration: none;
  text-transform: uppercase;
  margin-top: 5px;
  margin-bottom: 5px;
}

a:hover {
  color: lightblue;
  text-decoration: none;
}

a:active {
  color: lightblue;
}

a:visited {
  color: rgb(71, 71, 255);
}

/* Form */
form {
  width: 50%;
  margin: 0 auto;
  padding: 20px;
  border-radius: 5px;
  background-color: black;
  box-shadow: 0px 0px 10px #ccc;
}

label {
  display: block;
  margin-bottom: 5px;
}

select {
  width: 100%;
}

input[type="text"] {
  width: calc(100% - 20px);
}

select,
input {
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: rgb(50, 50, 50);
  color: grey;
  margin-bottom: 20px;
}

#preview-color {
  margin-bottom: -3px;
  height: 16px;
  width: 16px;
  background-color: #555;
  display: inline-block;
  border: 1px solid white;
}

.button {
  position: relative;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  text-align: center;
  background-color: black;
  color: gray;
  box-shadow: 0px 0px 10px #ccc;
  padding: 16px 30px;
  border: none;
  margin-bottom: 20px;
}

.button:hover {
  cursor: pointer;
  background-color: #1e5420;
}

input[type="checkbox"] {
  height: 25px;
  width: 25px;
}

/* End Form */

#result {
  width: 50%;
  margin: 0 auto;
  padding: 20px;
  background-color: black;
  border-radius: 5px;
  box-shadow: 0px 0px 10px #ccc;
  text-align: center;
  font-weight: bold;
  overflow-wrap: anywhere;
}

.container {
  display: flex;
  flex-direction: column-reverse;
  flex-wrap: wrap;
  align-content: center;
  justify-content: space-evenly;
}

.badge-preview {
  display: inline-block;
  text-align: center;
}

.download-links {
  display: grid;
  width: 50%;
  margin: 0 auto;
  padding: 20px;
  background-color: black;
  border-radius: 5px;
  box-shadow: 0px 0px 10px #ccc;
  text-align: center;
  font-weight: bold;
  overflow-wrap: anywhere;
  margin-bottom: 20px;
}