.average-calculator-container {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 90%;
    margin: 20px auto;
}

h1 {
    text-align: center;
	font-size: 32px;
    color: #333;
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #555;
}

input[type="text"] {
    width: calc(100% - 22px);
    padding: 12px;
    margin-bottom: 18px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
}

.result {
    margin-top: 25px;
    font-weight: bold;
    color: #28a745;
    text-align: center; /* Center the average */
    font-size: 20px; /* Make the average more prominent */
}

@media (max-width: 400px) {
    .average-calculator-container {
        padding: 20px;
    }

    input[type="text"] {
        font-size: 14px;
        padding: 10px;
    }

    .result {
        font-size: 16px;
    }
}