@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Noto+Sans+Symbols+2&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');

body {
    font-family: "PT Sans", sans-serif;
    font-size: 19px;
    padding: 12px 20px;

}

h1 {
    text-align-last: center;
    font-family: sans-serif;
    font-size: 45px;
    color-scheme: dark;
    color: rgb(0, 0, 0);
}

.contenedor, .tamaño {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.height, .width {
    width: 50%;
    margin: 8px 0;
    font-size: 16px;
}
.width, .key-class {
    padding: 12px 20px;
}

.key-class, .endpoint-class {
    width: 50%;
    margin: 8px 0;
    font-size: 17px;
}

#image-preview-contenedor {
    display: flex;
    justify-content: center;
    align-items: center; 
}

img {
    border-radius: 8px;
    max-width: 85%;
    height: auto;
}

input {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #f8f8f8;
    font-size: 14px;
}

.botones {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

button:hover {
    background-color: #3e8e41;
}

button {
    background-color: #4CAF50; /* Green */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px;
}