* {
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}

.wrapper {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0079fd;
    text-align: center;
}

.ageContainer {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.mainContainer{
    width: 500px;
    height: 100px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
}

.calculatedAge {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

h2, p {
   margin: 0;
}

h2 {
    font-size: 30px;
}

p {
    color: gray;
}

.calculated {
    width: 500px;
    height: 100px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    flex-direction: column;
    gap: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
}

#dateInput {
    border: none;
    width: 300px;
    height: 60px;
    font-size: 18px;
    padding: 10px;
    border-radius: 10px;
    background-color: #d4faff;
}

#dateButton {
    width: 120px;
    height: 60px;
    color: #fff;
    background-color: #0079fd;
    border: none;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
}
