@charset "UTF-8";
/* CSS Document */
* {
  box-sizing: border-box;
}
.resize{width:200px;display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;}
/* Style inputs */
input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

p, .p{color:white}
input[type=submit] {
  background-color: #5C5A5A;
  color: white;
  padding: 12px 20px;
  border: none;
  cursor: pointer; max-width: 100px
}

input[type=submit]:hover {
  background-color: #C9062A;
}

/* Style the container/contact section */
.container {
  border-radius: 5px;
  background-color: #5C5A5A;
  padding: 10px;color:black
}

/* Create two columns that float next to eachother */
.column {
  float: left;
  width: 50%;
  margin-top: 6px;
  padding: 20px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

@media screen and (max-width: 850px) {
	.visible-desktop{visibility: hidden;display:none;}
}
@media screen and (min-width: 851px) {
	.visible-mobile{visibility: hidden;display:none;}
}