body {
  margin: 0;
  font-family: sans-serif;
  background-image: url('background.jpg'); /* replace with your image */
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #0a4f80c0;
  padding: 25px 50px 50px 50px;
}

.container {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px;
  box-sizing: border-box;
}

button {
  background-color: #ffffff;
  width: 100%;
  padding: 15px;
  margin: 10px 0;
  font-size: 18px;
  border: none;
  cursor: pointer;
  border-radius: 8px;
}

#startbtn {
  background-color: #4CAF50;
  color: white;
  
}

#Disclaimer {
  background-color: #3646f4;
  color: white;
}

img {
  width: 50%;
  height: 50%; /* maintain aspect ratio */
  object-fit: contain;
  margin: 10px auto;
}

table {
  width: 60%;
  border-collapse: collapse;
  margin: 20px auto;
}

table td, table th {
  border: 1px solid #ddd;
  padding: 8px;
  width: 50%;
}

table caption {
  caption-side: top;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: left;
}

p
{
  text-align: left;
  text-align: justify;
}

