  
/* Body styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f4edc6;
    padding: 20px;
}

h1 {
    text-align: center;
    color: #000000;
    background-color: #109edf; 
    padding: 20px;
    font-size: 36px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-weight: bold;
}

#container {
    background-color: #fff;
    padding: 30px;
    line-height: 1.5;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}
/*Button styling*/
button {
    background-color: #109edf; 
    color: white;
    font-weight: bold;
    text-align: center;
    display:block;
    margin: auto;
    padding: 12px 30px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;  
}
/*Link styling*/
.link {
    color: #109edf; 
    font-size: 18px;
    font-weight: bold;
    padding: 5px 10px;
    display: inline-block;
}
  
.link:hover {
    color: #f0b506; 
    transform: translateY(-3px); 
}
#validation {
    text-align: center;
}

footer {
    margin: 50px;
}