* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
p{
    text-align: center;
    font-family: "Playwrite GB S", cursive;
    font-size: 30px;
}
.container {
    border: 1px solid black;
    max-width: 400px; 
    width: 90%; 
    margin: 0 auto;
    display: flex;
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    margin-top: 20px;
    border-radius: 25px;
    background: linear-gradient(135deg, #a1c4fd, #c2e9fb, #d4fc79, #96e6a1, #fcb1b1);
}

input {
    width: 95%;
    padding: 30px;
    text-align: right;
    font-size: 22px;
    border: none;
    background: linear-gradient(135deg, #fff0f6, #f7c1d7);
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.03);
    outline: none;
    min-width: 250px; 
}

.calc {
    margin-bottom: 20px;
    width: 100%; 
}

.calc table {
    width: 100%; 
    border-spacing: 10px;
}

.calc td {
    flex: 1 1 22%; 
    height: 60px; 
    border: 1px solid black;
    text-align: center;
    font-family: Archivo;
    border-radius: 20px;
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    min-width: 60px;
}
.calc td:hover {
    background: linear-gradient(135deg, #fff0f6, #f7c1d7);
}
