body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #2c3e50, #4ca1af);
    color: white;
    text-align: center;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.calculator {
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    padding: 20px 30px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    animation: fadeIn 1s ease-in-out;
}

h1 {
    margin: 0 0 10px 0;
    font-size: 28px;
    color: #84cef5;
}

p {
    margin: 5px 0 15px;
}

.input-section {
    margin-bottom: 15px;
}

input,
select {
    padding: 10px;
    margin: 5px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

button {
    padding: 10px 20px;
    background-color: #84cef5;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
}

button:hover {
    transform: scale(1.1);
    background-color: #67b3e1;
}

#output {
    margin-top: 20px;
    text-align: left;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Quote Container */
#quote-container {
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #84cef5;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    animation: fadeIn 1s ease-in-out;
}

#quote {
    font-style: italic;
    font-weight: 500;
    color: #84cef5;
    font-size: 16px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    body {
        padding: 30px 20px;
    }   
}