table { 
    margin: auto;
    padding: 10px;
    background-color: #BF5700;
    border-radius: 6px;
    opacity: 0.8;
}
img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 6px;
}
.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
h1 {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-style: italic;
}
th {
    font-size: 20px;
    font-style: italic;
    padding: 8px;
}
td {
    font-size: 15px;
    padding: 8px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-style: normal;
}

* {
    box-sizing: border-box;
}
input[type=text], select, textarea {
  width: 100%;
  padding: 10px;
  border: 2px solid lightseagreen;
  border-radius: 4px;
  resize: vertical;
}
input[type=password], select, textarea {
  width: 100%;
  padding: 10px;
  border: 2px solid lightseagreen;
  border-radius: 4px;
  resize: vertical;
}
  
label {
  padding: 12px 12px 12px 0;
  display: inline-block;
}
  
input[type=submit] {
  background-color: #04AA6D;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: right;
}
input[type=submit]:hover {
  background-color: #45a049;
}


input[type=reset] {
  background-color: lightblue;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: left;
}
input[type=reset]:hover {
  background-color: lightskyblue;
}

.container {
  border-radius: 5px;
  background-color: beige;
  background-image: url(bdimg1.jpeg);
  background-size: auto;
}
/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}
/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .col-25, .col-75, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
}
