body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, navy, black);
    background-repeat: no-repeat;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    min-height: 100vh;
}

h1 {
    color: aliceblue;
    text-align: center;
    margin-top: 20px;
}

p {
    color: aliceblue;
    text-align: center;
    margin-bottom: 20px;
}

p1 {
    color: black;
    text-align: center;
    margin-bottom: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 5px;
    background: none;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    height: fit-content;
    gap: 15px;
}
.button-upload {
    text-align: center;
}

.drop-zone {
    border: 2px dashed #ccc;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    margin-bottom: 20px;
    background-color: #f5f5f5;
}

.drop-zone p {
    margin: 0;
}

.drop-zone.drag-over {
    border-color: #007bff;
}

.image-container {
    text-align: center;
    max-height: 300px;
    max-width: 300px;
}

.container-crop-button {
    /* width: 200px; */
}

.crop-container img {
    max-width: 100px;
    max-height: 300px;
}

#uploadedImage, #croppedImage {
    display: none;
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}

#resultText {
    color: aliceblue;
}

button,label {
    background-color: #007bff;
    color: aliceblue;
    padding: 10px 0;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    margin: 10px;
    width: 200px;
    transition: all .3s;
}
label:hover {
    background-color: brown;
    color: aliceblue;
}
button:hover {
    background-color: brown;
    color: aliceblue;
}
