.nopaddingp {
	margin-block-end: .2em;
	margin-block-start: .2em;
}
	
body {
  overflow-y: scroll;
	font-family: arial;
	text-align: center;
  background: none transparent;
}

.card {
  border: 3px solid #000000;
  border-radius: 20px;

  transition: all 0.25s ease;
  margin: 2px;
}

.card:hover {
  transform:scale(1.05);
  -ms-transform:scale(1.05);           /* IE 9 */
  -moz-transform:scale(1.05);          /* Firefox */
  -webkit-transform:scale(1.05);       /* Safari and Chrome */
  -o-transform:scale(1.05);            /* Opera */
}

.textfield {
  display: none;
  width: 470px;
  height: 64px;
  border: 3px solid #000000;
  border-radius: 10px;
}

.smallc {
  border: 2px solid #000000;
  height:37px; width:37px;
  border-radius: 15px;
  margin: 0px;
  transition: all 0.15s ease;
}

.titleImg {width: 100%;}

a {
  color:blue;
  text-decoration:underline
}

/* Table related */
table {
	border-collapse: collapse;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.79);
	background: white;
  border: 5px black solid;
}
tr {border: 1px black solid;}
td {border: 1px black dotted;}

/* This is kinda buns but anything to make this work universally */
.text-outline{
  text-shadow: 0.125rem 0rem 0.125rem #ffffff,
  0.125rem 0.125rem 0.125rem #ffffff,
  0.125rem -0.125rem 0.125rem #ffffff,
  -0.125rem 0rem 0.125rem #ffffff,
  -0.125rem 0.125rem 0.125rem #ffffff,
  -0.125rem -0.125rem 0.125rem #ffffff,
  0rem 0.125rem 0.125rem #ffffff,
  0rem -0.125rem 0.125rem #ffffff
}
@supports (-webkit-text-stroke: white 0.25rem){
  .text-outline{
    -webkit-text-stroke: white 0.25rem;
    paint-order: stroke;
    text-shadow: 0rem 0rem 1rem #ffffff;
  }
}

/* Divs */
div.decorate, div.decoratenop {
  opacity: 1;
  border-radius: 15px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-top: 10px;
  background-color: rgba(0, 0, 0, 0.53);
  color: white;
  text-shadow: 0rem 0rem 1rem #ffffff67;
  backdrop-filter: blur(5px);
}

@media screen and (orientation:landscape) {
div.decorate { margin-left: 25%; }
div.decorate, div.decoratenop { width: 50%; }
}

@media screen and (orientation:portrait) {
.shadowtext {font-size: 120px !important;}
body { font-size: 42px; }
div.decorate { margin-left: 0%; }
div.decorate, div.decoratenop { width: 96%; }
}

/* Big button styling */
button, input[type=submit] {
  transition: all 0.1s linear;
  margin: 3px;
  height: 30px;
  font-size: 20px;
  line-height: 0;
  background: #fff;
  border: 0;
  border-bottom-color: currentcolor;
  border-bottom-style: none;
  border-bottom-width: 0px;
  border-bottom: 3px solid #b9b9b9;
  padding: 19px;
  border-radius: 7px;
  text-shadow: 0rem 0rem 0.2rem #00000050;
}

button:hover:not(:disabled), input[type=submit]:hover{
  border-bottom: 3px solid #b9b9b900;
  transform: translateY(2px);
}