.centrer {
	max-width: 800px;
    margin: 50px auto;
    padding: 2%;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #a9dce3;
 
}

body {
	background-color: #7689de;
	font-size: 16px;
	font-family: Comic Sans MS;
	font-weight: bold;
	text-align: left;
  display: flex;
  justify-content: center;
  align-items: center;
            
}

button1{
  font-size: 16px;
  font-family: Comic Sans MS;
  text-align: center;
}

.custom-btn {
  width: 130px;
  height: 40px;
  color: #fff;
  border-radius: 5px;
  padding: 10px 10px;
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
   box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);
  outline: none;
}
.btn-1 {
  background: rgb(100,100,100);
  background: linear-gradient(0deg, rgba(100,100,100,1) 0%, rgba(0,0,0,1) 100%);
  border: none;
}
.btn-1:hover {
   background: rgb(0,0,0);
background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(100,100,100,1) 100%);
}

.container {
            max-width: 600px;
            width: 100%;
            padding: 20px;
            background-color: #ffffff;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
        }
        h1 {
            text-align: center;
            color: #007BFF;
        }
        .question {
            margin-bottom: 20px;
        }
        .question h2 {
            font-size: 18px;
            margin-bottom: 10px;
        }
        .options label {
            display: block;
            margin-bottom: 5px;
        }
        .submit-btn {
            display: block;
            width: 100%;
            padding: 10px;
            background-color: #007BFF;
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
        }
        .submit-btn:hover {
            background-color: #0056b3;
        }