*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Mukta', sans-serif;
}

.navbar{
    position: sticky;
    top: 0;
    background-color: #ffffff;
    z-index: 100;
    height: 60px;
    box-shadow: 5px 5px 15px #e1e1e1;
}

.navbar nav{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 50px;
}

.navbar nav a{
    text-decoration: none;
    margin: 30px 10px;
    padding: 5px;
    color: #333333;
    font-weight: 500;
}

.navbar nav a i{
    color: #5f0404;
}

.content{
    padding: 30px;
    display: flex;
    justify-content: center;
    min-height: 90vh;
    width: 100%;
}

.content.upload{
    align-items: center;
}

.content.results{
    align-items: center;
}

.results h4{
    margin-top: 100px;
    font-size: 1.4rem;
    font-weight: lighter;
    display: block;
    padding: 10px 40px;
    border: 1px solid;
    border-radius: 5px;
}

.results h4.success{
    color: #4BB543;
    border-color: #4BB543;
}

.results h4.error{
    color: #ff3333;
    border-color: #ff3333;
}

.upload form{
    min-width: 35%;
    padding: 30px;
    font-size: 18px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 5px 5px 15px #e1e1e1;
}

.upload form .form-content{
    margin: 30px auto 80px auto;
}

.upload form .form-content.box-info{
    margin: 30px auto 30px auto;
    display: none;
}

.upload form .form-content label[for="ourfile"]{
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background-color: #106BA0;
    display: inline-block;
    transition: all .5s;
    cursor: pointer;
    padding: 15px 40px !important;
    width: fit-content;
    text-align: center;
}

.upload form .form-content input{
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.upload form input[type="submit"]{
    padding: 5px 22px;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    background-color: #5f0404;
    border: none;

}
