html{
	background-color: skyblue;
	margin-left:20px;
	margin-right: 40px;
}

h1{ 
	text-align: center;
}
.welcome{
	font-size: 24px;
	font-family: sans-serif;
	text-align: justify;
}
.indent{
	text-indent: 50px;
}
  .topright {
    position: absolute;
    top: 8px;
    right: 16px;
}
.bottomright {
    position: absolute;
    bottom: 8px;
    right: 16px;
}
.p{
	font-size: 18px;
}

* {
    box-sizing: border-box;
}

/* Create two equal columns that floats next to each other */
.column {
    float: left;
    width: 40%;
    padding: 10px;
    }

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

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
    .column {
        width: 100%;
    }
}
	table, td, th {
		border: 1px black;

    margin:2px;
}

table {
  /*  border-collapse: collapse;*/
    width: 100%;
}

td {
    height: 50px;
    vertical-align: center;
    
}

