*{margin: 0;
    padding: 0;
   font-family: 'Poppins', sans-serif;
   box-sizing: border-box;
  }

body{
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, #4203a9,#90bafc);
    color: #fff;
    
}

.container{
    position: absolute;
    top:25%;
    left: 20%;
    
}

.title{
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 30px;
    padding-bottom: 30px;
    
    
}

.age{
    color: #fdf565;
}

.calculator{
    display: flex;
    background: #8a79d7;
    padding: 30px 10px;
    border-radius: 10px;
    justify-content: center;
    gap: 10px;
}

.calculator input{
    width: 65%;
    height: 45px;
    border-radius: 7px;
    border: none;
    padding: 0 10px;
    
}

.calculator button{
    background: #fff466;
    color: black;
    border-radius: 7px;
    border: none;
    width: 25%;
    cursor: pointer;
    
}

.calculator button:hover{
    filter: brightness(120%);
}
.result{
    margin-top: 50px;
}

/* Media query for screens */
@media screen and (max-width: 600px) {
    .container {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
    }

    .title {
        font-size: 20px;
    }

    .calculator {
        flex-direction: column;
        padding: 20px;
    }

    .calculator input {
        width: 100%;
        margin-bottom: 10px;
    }

    .calculator button {
        width: 100%;
    }

    .result {
        margin-top: 20px;
    }
}


   