*{
    box-sizing: border-box;
}

body{
    margin: 0;
    background-color: rgb(17, 16, 16);
    font-family: "JetBrains Mono", Arial, Helvetica, sans-serif;
}

.navbar{
    display:flex;
    gap:10px;
    margin-left:20px;
    color:rgb(252, 252, 252);
}

.container{
    position:absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    text-align: center;
}

.container .img-display-area{
    border: 4px dashed rgb(94, 94, 94);
    height:400px;
    width:100%;
    margin:1rem;
}

.container .btn-area{
    display: flex;
    gap: 10px;
    margin-left:30px;
    justify-content: center;
}

.container .btn-area #forward-btn{
    background-color: #007bff;
    border-radius: 5px;
    border: none;
    width:50px;
    transition: background-color 0.3s ease;
}

.container .btn-area #forward-btn:hover{
    background-color: #528dcc;
    cursor: pointer;
}

@media(max-width:468px){
    .container .img-display-area{
        border: 4px dashed rgb(94, 94, 94);
        height:400px;
        width: 350px;
        margin:1rem;
    }

    .container .btn-area{
        gap: 0.25rem;
        margin-left:none;
        justify-content: left;
    }

    .container .btn-area #forward-btn{
        background-color: #007bff;
        border-radius: 5px;
        border: none;
        width:50px;
    }

    .container .btn-area #backward-btn{
    background-color: #6c757d;
    border-radius: 5px;
    border: none;
    width:50px;
    }

    .container .btn-area #reset-btn{
        background-color: #dc3545;
        border-radius: 5px;
        border: none;
        width:50px;
    }

    .btn-area #file-input-form #file-input{
        background-color: white;
        font-family: inherit;
        border:none;
        border-radius: 5px;
        width:170px;
        font-size:0.6rem;
    }

    .btn-area #file-input-form #file-input::file-selector-button{
        padding:0.5rem;
        font-family: inherit;
        background: #007bff;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        width:80px;
        font-size:0.6rem;
        /* content:☁ */
    }
}

.container .btn-area #backward-btn{
    background-color: #6c757d;
    border-radius: 5px;
    border: none;
    width:50px;
    transition: background-color 0.3s ease;
}

.container .btn-area #backward-btn:hover{
    background-color: #acb3b9;
    cursor: pointer;
}

.container .btn-area #reset-btn{
    background-color: #dc3545;
    border-radius: 5px;
    border: none;
    width:50px;
    transition: background-color 0.3s ease;
}

.container .btn-area #reset-btn:hover{
    background-color: #dd5e6b;
    cursor: pointer;
}

.btn-area #file-input-form #file-input{
   background-color: white;
   font-family: inherit;
   border:none;
   border-radius: 5px;
}

.btn-area #file-input-form #file-input::file-selector-button{
    padding:1rem;
    font-family: inherit;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-area #file-input-form #file-input::file-selector-button:hover{
    background: #3a88db;
    cursor: pointer;
}

#info-area{
    color:white;
    font-size:1rem;
    margin-top: 500px;
    text-align:center;
}

@media(max-width:760px){
    #info-area{
        margin-top: 580px;
    }
}