/* Name:Umesh Thapa
	Student Number:991650786
 */

 body{ background-color: #f2f2f2; }
 a{ color: #534232; }
 
 .flex-container {
  display: flex;
  flex-direction: row;
  font-size: 25px;
  text-align: center;
}

.flex-item-left {
  background-color: #f1f1f1;
  padding: 10px;
  flex: 50%;
}

.flex-item-right {
  background-color: #f1f1f1;
  padding: 10px;
  flex: 50%;
}

@media (max-width: 800px) {
  .flex-container {
    flex-direction: column;
  }
}

body { text-align: center; font-weight: bold; 
  background-image: url('../images/wall.jpg'); 
  height: fit-content; width: fit-content;
  background-size: cover;
  background-color: rgba(255,255,255,0.5);
  background-blend-mode: lighten;
    }

section { border: 1px solid black; padding: 1em; }

.grid { display: grid; 
        width: 99%;
        grid-template-areas: 'hdr'
                             'c1'                               
                             'ft';
        grid-gap: 10px;
    }

header { grid-area: hdr; }
.c1 { grid-area: c1; }
footer { grid-area: ft; justify-content: space-evenly;}  
p {font-size: 100%;}
.align {text-align: justify;
padding-left: 315px;}

.flex-container {
display: flex; 
justify-content: space-evenly;
}
.navbar { border: rgb(14, 14, 14) solid 2px; display: flex; }

.um { text-align: center;
}

input[type="button"], input[type="submit"] {
  background-color: #306e9e; /* Green */
  color: white;
  display: inline-block;
  width: 100%;
  padding: 12px;
  margin-bottom: 4%;
  border: none;
  border-radius:8px;
  text-align: center;
  text-decoration: none;
  font-size: 24px;
  cursor: pointer;
  }
    
input[type="text"], 
input[type="number"], 
select, output{
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
  width: 100%;
  padding: 12px 20px;
  margin: 16px 0;
  border-radius: 4px;
  font-size: 18px;
}

#table1, #table2{ 
  background-color: white;
  box-shadow: 0 2px 2px 0 rgba(0,0,0,0.2);
  border-radius: 2px;
  grid-area: up;
  margin-top: 2%;
  margin-bottom: 2%;
}

table{
	font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  text-align:center;
}

table td, table th {
  border: 1px solid #ddd;
  padding: 55px;
  font-size: 16px;
}

table th {
  background-color: #be865e;
  color: #F7DECA;
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: center;  
}

table tr:nth-child{background-color: #f2f2f2;}
