/* Basic page setup */
body {
    font-family: Arial, sans-serif;
    background-color: #e6ecf2;
    margin: 0;
}

/* Center everything inside main */
main {
    text-align: center;
}

/* Heading style */
h1 {
    margin-top: 40px;
    color: #2c3e50;
}

/* Greeting container box */
#container {
    width: 400px;
    margin: 30px auto;
    padding: 20px;
    background-color: white;
    border: 2px solid #2c3e50;
    border-radius: 10px;
}

/* Greeting text */
#container p {
    margin: 10px 0;
    font-size: 18px;
    color: #333;
}

/* Button section */
#buttonify {
    margin: 20px;
}

/* Button style */
#buttonify button {
    background-color: #db3482;
    color: white;
    padding: 10px 25px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Hover effect */
#buttonify button:hover {
    background-color: #2980b9;
}

/* Make it bold */
.hero-name {
    font-weight: bold;
}

/* ID that centers the validation text */
#validation {
    text-align: center;
}

/* add a margin around the entire footer */
#footer {
    margin: 50px;
}