<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Thanks for Calling</title>
<style type="text/css">
/* CSS from the previous code */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Arial, sans-serif;
font-size: 16px;
line-height: 1.5;
}
a {
text-decoration: none;
color: inherit;
}
.divMain {
border: solid 2px #ddd;
max-width: 600px;
margin: 30px auto;
background-color: #fff;
padding: 20px;
text-align: center;
box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.07);
}
@media only screen and (max-width: 768px) {
.divMain {
max-width: 90%;
}
}
</style>
</head>
<body>
<div class="divMain">
<h2>Thanks for Calling.</h2>
<p>Please wait...</p>
</div>
</body>
</html>