body {
    font-family: monospace;
    background-color: #ffffff;
}

.file-upload {
    background-color: #ffffff;
    margin: 0 auto;
    padding: 10% 5%;
    border-radius: 10px;
    border: 1px solid #f6f7fa;
    background-color: #f6f7fa;
}

.file-upload-btn {
    width: 100%;
    margin: 0;
    color: #fff;
    background: #1FB264;
    border: none;
    padding: 10px;
    border-radius: 4px;
    border-bottom: 4px solid #15824B;
    transition: all .2s ease;
    outline: none;
    text-transform: uppercase;
    font-weight: 700;
}

.file-upload-btn:hover {
    background: #1AA059;
    color: #ffffff;
    transition: all .2s ease;
    cursor: pointer;
}

.file-upload-btn:active {
    border: 0;
    transition: all .2s ease;
}

.file-upload-content {
    display: none;
    text-align: center;
}

.file-upload-input {
    position: absolute;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    outline: none;
    opacity: 0;
    cursor: pointer;
}

.image-upload-wrap {
    position: relative;
    width: 70%;
    object-fit: contain;
    margin: 0 auto;
    border-radius: 10px;
    border: 1.5px dashed #35465d;
}

.image-dropping, .image-upload-wrap:hover {
    background-color: #35465d;
    border: 1.5px dashed #ffffff;
    color: #ffffff;
}

.image-title-wrap {
    padding: 0 15px 15px 15px;
    color: #222;
}

.drag-text {
    text-align: center;
}

.drag-text h3 {
    width: 50%;
    font-size: 1rem;
    font-weight: 100;
    text-transform: uppercase;
    margin: 0 auto;
}

.file-upload-image {
    max-height: 400px;
    max-width: 400px;
    margin: auto;
    padding: 20px;
}

.remove-image {
    width: 200px;
    margin: 0;
    color: #fff;
    background: #cd4535;
    border: none;
    padding: 10px;
    border-radius: 4px;
    border-bottom: 4px solid #b02818;
    transition: all .2s ease;
    outline: none;
    text-transform: uppercase;
    font-weight: 700;
}

.remove-image:hover {
    background: #c13b2a;
    color: #ffffff;
    transition: all .2s ease;
    cursor: pointer;
}

.remove-image:active {
    border: 0;
    transition: all .2s ease;
}

.nav-distance {
    padding: 2.1% 7.7%;
}

.navbar-light .navbar-brand {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    line-height: 1.68;
    text-align: left;
    color: #35465d;
}

.navbar-light .navbar-toggler {
    border-color: #ffffff;
}

.section {
    margin-top: 100px;
}

.title {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    line-height: 1.68;
    text-align: center;
    color: #5d4535;
}

.subtitle {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    line-height: 1.53;
    text-align: center;
    color: #35465d;
}

#label-container {
    width: 80%;
    max-width: 500px;
    margin: 30px auto;
}

.matched-animal {
    color: #9b6b43;
    font-size: 2rem;
}

.result-message {
    font-size: 1.5rem;
}

.celebrities {
    color: #9b6b43;
    font-size: 1.2rem;
}

.bar-container {
    margin-bottom: 10px;
    height: 30px;
    text-align: left;
}

.bar-container:last-of-type {
    margin-bottom: 0;
}

.bar-label {
    text-align: left;
    font-weight: bold;
    font-size: 1.5rem;
}

.bar-outer {
    width: 100%;
    height: 100%;
    background-color: rgba(var(--bg), 0.1);
    text-align: center;
    border-radius: 5px;
}

.bar-inner {
    width: var(--width);
    height: 100%;
    background-color: rgba(var(--bg), 0.8);
    text-align: center;
    border-radius: 5px;
}

.bar-text {
    color: #ffffff;
    font-weight: bold;
    margin: 0 5px;
}

@media screen and (max-width: 600px) {
    html {
        font-size: 10px;
    }
    .navbar-brand {
        font-size: 2rem;
    }
}