* {
    font-family: 'Inter', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    background-color: #e9ecef;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
    opacity: 5;
}

/* Header  */
.header {
    padding: 1rem 0;
    margin-bottom: 1rem;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    color: #007BFF;
    display: flex;
    align-items: center;
}

.logo-img {
    margin-right: 10px;
}


/* Seccion Main */
h1 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 42px;
    padding-bottom: 0.5rem;
    text-align: center;
}

a {
    width: 50px;
    height: 42px;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.warning-message{
    margin-left: 10px;
}

.grid-container {
    display: grid;
    grid-gap: 1rem;
    align-items: center;
}

.box-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 1rem;
}

.box {
    background-color: #e9ecef;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
}

.border {
    border: 1px solid #dee2e6;
}

.rounded {
    border-radius: 0.375rem;
}

.text-container {
    border: solid 2px;
    border-radius: 5px;
    padding: 20px;
}

/* Seccion Buttons  */
.small-button {
    padding: 8px 16px;
    font-size: 14px;
    line-height: 1.5;
    border: 1px solid #007BFF;
    background-color: #007BFF;
    color: #fff;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.small-button:hover {
    background-color: #0056b3;
    color: #fff;
}

.small-button:disabled {
    background: #898989;
    border: 1px solid #898989;
}

.small-button:disabled,
.small-button:disabled:hover {
    background: #898989;
    border: 1px solid #898989;
    color: #fff;
    cursor: not-allowed;
}

/* Textarea */
.textarea {
    width: 97.5%;
    background: #dee2e6;
    height: 300px;
    margin-bottom: 20px;
    padding: 10px;
    border: none;
    border-radius: 0.375rem;
    font-size: 20px;
}

/* Result Text Section */
.box2 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text-container {
    text-align: center;
    padding: 20px;
}

.text-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}


.result-text {
    font-size: 18px;
    margin-bottom: 10px;
    width: 200px;
}

.small-button {
    margin-top: 10px;
}


/* Sección de botones grandes*/
.button-container {
    display: flex;
    justify-content: space-between;
}

.large-button {
    flex-grow: 1;
    margin: 10px;
    padding: 10px;
    font-size: 16px;
    line-height: 1.5;
    border: 1px solid #007BFF;
    background-color: #007BFF;
    color: #fff;
    border-radius: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.large-button:hover {
    background-color: #0056b3;
    color: #fff;
}

/* Footer */
.footer {
    background-color: #212529;
    color: #fff;
    padding: 20px;
    text-align: center;
    width: 100%;
    margin-top: 25px;
}

.footer p {
    margin: 0;
    font-size: 14px;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.social-section {
    margin-bottom: 1px;
}

.social-icons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;

}

.social-link {
    text-decoration: none;
    color: #fff;
    font-size: 24px;
}