/* Place your CSS styles in this file */
 body {
	 background-color: black;
 }
 
 header > h1 {
    text-align: left;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: normal;
	color: white;
}

h1 {
    text-align: left;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: normal;
	color: white;
}

main {
	 color: white;
 }
 
h1 {
    text-align: left;
    font-family: "Helvetica", sans-serif;
    font-size: 60px;
}

h3 {
    text-align: left;
    font-family: "Helvetica", sans-serif;
    font-size: 27px;
}

li {
	display: inline;
	margin-right: 8px;
}

table, th, td {
  /*border:1px solid white;*/
}
th, td {
  padding: 5px;
  color: white;
}

input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

input[type=submit] {
  background-color: #04AA6D;
  color: black;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #45a049;
}

.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}

.error {color: red;}

a:link {
  color: green;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: pink;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: red;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: yellow;
  background-color: transparent;
  text-decoration: underline;
}

.home{
        background-image: url('images/background.jpg');
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100% 100%;
}

.header {
  padding: 60px;
  text-align: center;
  background: #1abc9c;
  color: white;
  font-size: 30px;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

.p1 {
    text-align: left;
    font-family: "Helvetica Light", sans-serif;
    font-size: 17px;
}
.p2 {
    text-align: left;
    font-family: "Helvetica Light", sans-serif;
    font-size: 16px;
}
.p3 {
    text-align: left;
    font-family: "Helvetica Light", sans-serif;
    font-size: 14px;
}

.hidden {
  display: none;
}

.user-cannot-see {
    display:none
}
'/* alerts */
.alert {
  position: relative;
  padding: 1rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}
.alert-error {
  color: #842029;
  background-color: #f8d7da;
  border-color: #f5c2c7;
}
.alert-warning {
  color: #664d03;
  background-color: #fff3cd;
  border-color: #ffecb5;
}
.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}
.alert-success {
  color: #0f5132;
  background-color: #d1e7dd;
  border-color: #badbcc;
}
