@charset "UTF-8";

/* ここから各要素のCSS */
body {
text-align: center !important;
line-height: 3em;
}

p {
line-height: 1em;
}

@media (prefers-color-scheme: light) {
a #show-dialog-btn {
color: #000000;
}
}

@media (prefers-color-scheme: dark) {
a #show-dialog-btn {
color: #ffffff;
}
}

#button {
    font-size: 100%;
}

input[type="range"] {
    width: 200px;
    position: relative;
    bottom: -5px;
  cursor: pointer;
}

input[type="color"] {
    vertical-align: baseline;
    position: relative;
    bottom: -4px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border: none;
    background: none;
    border-radius: 20px;
}

button {
    margin-left: 300px;
    margin-top: 100px;
    background: #9c9c9c;
    width: 200px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 10px;
    color: #000000;
    border: none;
}

#darkTheme,
#colorReset {
    width: 50px;
    position: relative;
    top: -2px;
  cursor: pointer;
}

#darkTheme:hover,
#colorReset:hover {
    opacity: 0.9;
}

input[type="button"] {
    background: #9c9c9c;
    width: 180px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 10px;
    color: #000000;
    border: none;
}

input[type="button"]:hover {
    opacity: 0.9;
}

#main h1 {
    text-align: left;
    margin-bottom: 20px;
}