@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@700&display=swap');

body {
    margin: 20 0 0 0;
    background-color: #1A1A1A;
    text-align: center;
}

p, h1, h2 {
    color: white;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 32px;
    text-shadow: 2px 2px 0px black, -2px -2px 0px black, -2px 2px 0px black, 2px -2px 0px black;
    margin: 0 0 0 0;
}

.small {
    font-size: 26px;
}

.section {
    background-color: #2D2D2D;
    width: 1000px;
    padding: 8px 0px 8px 0px;
    border-radius: 5px;
    margin: 0 auto 10 auto;
}

.inline, .vline, .vparent * {
    display: inline-block;
}

.valign, .vline, .vparent * {
    vertical-align: middle;
}

.spaced {
    margin-bottom: 25px !important;
    margin-top: 12px !important;
}

.btn {
    background-color: #C9C9C9;
    border-radius: 5px;
    width: 100px;
    height: 50px;
    margin: 0 1.5 0 1.5;
    cursor: pointer;
    transition-duration: 0.2s;
}

.btn:hover {
    background-color: #F5F5F5;
}

.btn.btnEnabled {
    background-color: yellow !important;
}

.smolbtns .btn {
    width: 50px !important;
}

.filename {
    background-color: #1F1F1F;
    padding: 5px 0px 5px 0px;
    margin: auto;
    width: 500px;
    border-radius: 5px;
}

.filename p {
    text-shadow: none !important;
}

#folder {
    cursor: pointer;
    margin-left: 8px; 
}

.greyed {
    user-select: none;
    pointer-events: none;
    filter: grayscale();
    opacity: 25%;
}