h1,
h2,
h3,
h4,
h5 {
    font-weight: 700;
    color: #fb7e14;
}

a,
h1,
h2,
h3,
h4,
h5 {
    color: #fb7e14;
}

html {
    font-size: 14px;
}

body {
    font-family: Roboto, Arial, sans-serif;
    margin: 10px;
    background-color: #151515;
}

.container {
    display: flex;
    flex-direction: column;
}

.column {
    width: 100%;
}

.explanation {
    padding-bottom: 35px;
}

@media (min-width: 768px) {
    .container {
        flex-direction: row;
    }
    .column-10 {
        width: 10%;
    }
    .column-80 {
        width: 80%;
    }
}

h1 {
    font-size: 1.5rem;
}

h2 {
    font-size: 1.25rem;
}

h3 {
    font-size: 1rem;
}

h4,
h5 {
    font-size: 0.875rem;
}

a {
    text-decoration: none;
}

p {
    font-size: 1rem;
    line-height: 1.5;
    color: #fff;
}

input[type=file] {
    display: none;
}

input[type=checkbox] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background-color: #fb7e14;
    border: 2px solid #292929;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
}

input[type=checkbox]:checked::after {
    content: '';
    position: absolute;
    left: 3px;
    width: 6px;
    height: 12px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-file-upload {
    background-color: #fb7e14;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.custom-file-upload:hover {
    background-color: #e56b0c;
}

.upload-form {
    padding-bottom: 20px;
}

.cache-container {
    display: flex;
    align-items: center;
}

.cache-container h5 {
    margin-right: 10px;
}