html {
    background-color: #30303b;
    color: white;
}

body {
	margin: 0;
	font-family: Roboto, -apple-system, BlinkMacSystemFont, Segoe UI, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
	font-size: 14px;
	line-height: 1.5;
	color: white;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 0.5em 0;
	font-weight: 400;
	line-height: 1.2;
}

h1 {
	font-size: 2em;
}

a {
	color: inherit;
}

code {
	font-family: menlo, inconsolata, monospace;
	font-size: calc(1em - 2px);
	color: #555;
	background-color: #f0f0f0;
	padding: 0.2em 0.4em;
	border-radius: 2px;
}

@media (min-width: 400px) {
	body {
		font-size: 16px;
	}
}

.placeholderCard {
    height: 28ch;
    width: 20ch;
    border: 1px solid white;
    text-align: center;
    vertical-align: center;
}

input,
textarea {
  background: none;
  color: white;
  font-size: 18px;
  padding: 10px 10px 10px 5px;
  display: block;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid white;
}

input[type=textarea] {
    width: 40ch;
}

input[type=file] {
    width: unset;
    border: unset;
    padding: unset;
    display: unset;
    font-size: x-small;
}

  label {
    color: white;
    font-size: 16px;
    font-weight: normal;
    pointer-events: none;
    transition: 300ms ease all;
  }

  .maincol {
    display: flex;
    flex-direction: column;
    align-content: center;
    flex: 1;
    justify-content: center;
    align-self: center;
    align-items: center;
    height: 100vh;
}


button {
    display: block;
    border: 2px solid white;
    color: white;
    min-height: 5ch;
    background-color: transparent;
    border-radius: 2ch;
    margin: 1ch auto;
    font-weight: bolder;
}

button:hover {
    display: block;
    border: 2px solid white;
    color: white;
    height: 5ch;
    background-color: darkgreen;
    border-radius: 2ch;
    margin: 0 auto;
    font-weight: bolder;
    cursor: pointer;
}

button:disabled {
    display: block;
    border: 2px solid darkgray;
    color: darkgray;
    height: 5ch;
    background-color: lightgray;
    border-radius: 2ch;
    margin: 0 auto;
    font-weight: bolder;
    cursor: not-allowed;
}