*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body{
    background-color: #f2f2f2;
    height: 100vh;
    display: block;
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrapper{
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    width: 40%;
    min-height: 300px;
    gap: 20px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

p{
    font-size: 18px;
}

.intro-header{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


input{
    width: 100%;
    height: 35px;
    border: 1px solid black;
    border-radius: 5px;
    padding-left: 10px;
}

.calculate{
    display: flex;
    align-items: center;
    justify-content: space-around;
}

button{
    width: auto;
    height: 35px;
    background-color: rgb(15, 168, 15);
    color: #f2f2f2;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    transition: all 0.5s ease-in-out;
}

button:hover{
    background-color: rgb(24, 155, 24);
}

/* @media (min-width: 380px) {
    
} */

@media (min-width: 420px){
    p{
        font-size: 12px;
    }
    .wrapper{
        width: 95%;
    }
}


@media (max-width: 768px){
    p{
        font-size: 12px;
    }

    .wrapper{
        gap: 10px;
        width: 80%;
    }
}


@media (min-width: 1024px){
    p{
        font-size: 14px;
    }

    .wrapper{
        gap: 15px;
        width: 60%;
        max-width: 500px;
    }

}