.age-calculator {
/*     margin: 20px 0; */
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	padding: 30px;
    max-width: 400px;
    margin: 50px auto; /* center horizontally */
    background: #23262E;
    border-radius: 12px;
    box-shadow: 0 0 10px #131824;
}
.age-calculator input{
	padding: 10px;
    margin: 10px;
    width: 100%;
    border: 1px solid #2F333D;
    border-radius: 6px;
    font-size: 16px;
	box-shadow: 0 0 10px #131824;
	background: #2F333D;
	color: #fff;
}

.age-calculator button {
    margin-top: 5px;
    margin-right: 10px;
	background-color: #8A54DD;
}
.age-calculator button:hover{
	background-color: #6500FF;
}
#age-result{
	margin-top: 20px !important;
	color: #fff !important;
}
