* {
    margin: 0;
    padding: 0;
}

body {
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% 100%;
    background-image: linear-gradient(120deg, #2980b9, #8e44ad);
}

.text-center {
    color: rgb(77, 75, 79);
    background-color: white;
    padding: 15px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


.text-center img {
    border-radius: 15px;
    width: 60px;
    margin-left: 15px;
    margin-right: 15px;
}

fieldset {
    border: none;
    border-radius: 15px;
    background-color: white;
    max-width: 40%;
    margin: auto;
    padding-bottom: 15px;
    padding-top: 15px;
    margin-top: 25px;
}

.container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

#fileinput {
    justify-content: center;
    align-items: center;
    text-align: center;
    border: none;
    border-bottom: 2px solid black;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.form-control {
    width: 100%;
    font-size: 25px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hadding {
    font-size: 35px;
}

.btn {
    background-image: linear-gradient(120deg, #2980b9, #8e44ad);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    color: white;
    padding: 10px;
    margin: 5px;
    border: none;
    border-radius: 10px;
    font-size: 20px;
    width: 100%;
    cursor: pointer;
}

.btn:hover {
    opacity: 0.8;
}

.try input[type="file"] {
    color: #2980b9;
    opacity: 0;
}

.errBox {
    display: flex;
    justify-content: center;
    align-items: center;
}

#err {
    color: red;
    border-radius: 15px;
    text-align: center;
    margin: 15px;
    padding: 15px;
}

.imgOutputBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.imgOutput {
    margin: 25px;
    padding: 10px;
    max-width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: aliceblue;
    border-radius: 15px;
}


.imgOutput img {
    max-width: 60%;
}

.imgOutput .btn {
    max-width: 60%;
}

