body {
    font-family: 'Poppins', sans-serif;
    background-color: #E2E2E2;
    color: #37474f;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    width: 80%;
    max-width: 600px;
    margin: 20px auto;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

h1 {
    font-weight: 700;
    margin-bottom: 20px;
    color: #388e3c;
}

.translation-form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

textarea {
    width: 100%;
    height: 120px;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    padding: 15px;
    border: 1px solid #b2dfdb;
    border-radius: 10px;
    box-shadow: none; 
    transition: border-color 0.3s;
}

textarea:focus {
    border-color: #388e3c;
    outline: none;
}

select {
    width: 48%;
    margin: 5px 1%;
    padding: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    border: 1px solid #b2dfdb;
    border-radius: 10px;
    box-shadow: none; 
    transition: border-color 0.3s;
}

select:focus {
    border-color: #388e3c;
    outline: none;
}

button {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    padding: 12px 25px;
    background-color: #388e3c;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s, transform 0.3s;
}

button:hover {
    background-color: #2e7d32;
    transform: translateY(-2px);
}

button:active {
    background-color: #33691e;
}

.result {
    margin-top: 30px;
    text-align: left;
}

.result h2 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #388e3c;
}

.result p {
    font-size: 18px;
    padding: 15px;
    background-color: #e0f2f1;
    border-left: 5px solid #388e3c;
    border-radius: 10px;
    box-shadow: none; 
}