body {
    font-family: Arial, Helvetica, sans-serif;
background-color: #cecece;
}

header {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 62px;
    color: #000000;
    text-align: center;
    width: auto;
    margin-top: 50px;
    margin-bottom: 50px;
    background-attachment: fixed;
    background-clip: padding-box;
}

.footer {
    font-family: 'Arial', cursive;
    background-color: #cecece;
    color: #000000;
    text-align: center;
    padding: 20px;
    margin-top: auto;
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
}

.confirmation-container {
    width: auto;
     max-width: 600px;
     margin: 20px auto;
     background-color: #e6e6e6;
     color: #333333;
     padding: 20px;
     border-radius: 20px;
     box-shadow: 0 0 60px rgba(0, 0, 0, 0.185);
     text-align: center;
 }
 
 .confirmation-container h2 {
     color: #000000;
     font-size: 40px;
     margin-bottom: 10px;
 }
 
 .confirmation-container p {
     font-size: 18px;
     margin-bottom: 20px;
 }
 
 .button-container {
     display: flex;
     justify-content: space-around;
 }
 
 .button {
     background-color: #000000;
     color: #ffffff;
     padding: 10px 15px;
     border: none;
     border-radius: 20px;
     text-decoration: none;
     cursor: pointer;
     box-shadow: 0 0 60px rgba(0, 0, 0, 0.247);
     transition: background-color 0.5s;
 }
 
 .button:hover {
     background-color: #a50000;
 }