* {
    box-sizing: border-box;
}

body {
    background: linear-gradient(45deg, rgb(249, 174, 142), rgb(246, 124, 124));
    font-family: 'Poppins';
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    width: 60%;
    background: linear-gradient(180deg, white, rgb(228, 228, 228));
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.header {
    text-align: center;
    margin-bottom: 25px;
}

.about {
    color: grey;
}

.heading {
    font-size: 2.5rem;
    color: grey;
    font-weight: bold;
}

.input-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.input-section label {
    font-size: 1.2rem;
    color: #17252a;
    font-weight: bold;
}

.input-section input {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border-radius: 5px;
    border: 2px solid grey;
}

.button-section {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.button-section button {
    padding: 10px 20px;
    font-size: 1.2rem;
    color: white;
    background-color: #2b7a78;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.button-section button:hover {
    background-color: #17252a;
}

.output-section {
    margin-top: 20px;
    text-align: center;
}

.output-box {
    width: 100%;
    background-color: rgb(250, 230, 157);
    padding: 15px;
    border-radius: 5px;
    font-size: 1.2rem;
    color: #17252a;
}
