* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color:#FFFFFF;
  font-size: 18px;
}

html, body {
  background-color:#250931;
  min-height: 100vh;
 /* background-image: url("../magic/mtghintergrund.png");
 background-repeat: no-repeat;
 background-size: cover;
 background-position: center; */
  background: rgb(2,0,36);
  background: linear-gradient(135deg, rgba(2,0,36,1) 0%, rgba(59,2,94,1) 50%);
}

h1 {
  font-size: 2rem;
}

h3 {
  line-height: 1.45;
}

 /* a */
a {
  text-decoration: none;
  color:#e1ff00;
}

a:hover {
  color: purple;
  text-decoration: underline;
}

.btn {
  border-radius: 5px;
  border: none;
  padding: 0.5rem;
  background: White;
  color: purple;
  cursor: pointer;
  width: 250px;
  height: 40px;
}

.btn:hover {
  text-decoration: underline;
}

input {
  height: 40px;
  border-radius: 5px;
  border: none;
  padding: 0.5rem;
  background-color: white;
  color: purple;
  width: 250px;
}

.title {
  text-align: center;
  margin-bottom: 1.25rem;
  padding-top: 1rem;
  font-weight: 900;
  font-size: 3rem;
  color: #e1ff00
}

.container {
  max-width: 900px;
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nick-name {
  color: #e1ff00;
}

.commander-image {
  width: 350px;
  height: 500px;
  border-radius: 25px;
  filter: drop-shadow(0 0 1.75rem #231647);
}

.commander-color-id, .commander-name {
  margin-bottom: 25px;
}

img {
  display: inline;
  margin: 0 auto;
  width: auto;
}

img.rounded {
  object-fit: cover;
  border-radius: 15px;
  width: 350px;
}

.commander-right {
  padding: 15px 5px;
  display:flex;
  border-radius: 15px;
  flex-direction:column;
  filter: drop-shadow(0 0 0.75rem #231647);
}

.commander-output {
  margin-top: 50px;
  display: grid;
  width: 100%;
  padding: 0 1rem;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  text-align: center;
  flex-grow: 1;
}


.footer {
  margin-top: 2rem;
  text-align: center;
  flex-grow: 0;
  flex-shrink: 0;
  width: 100vw;
}