@font-face {
    font-family: 'inter';
    font-display: optional;
    src: url('/inter-tr.woff2') format('woff2');
}
@font-face {
    font-family: 'jetbrains';
    font-display: optional;
    src: url('/jetbrains-tr.woff2') format('woff2');
}
body {
    font: 1em inter, sans-serif;
    background-color: black;
    color: white;
    margin: 40px auto;
    max-width: 600px;
    padding: 0 10px;
}
code{
    font: 1em jetbrains;
}
figure {
  text-align: center;
  padding: 5px;
}
figure > img {
    max-width: 100%;
}
video{
    max-width: 100%;
}
button {
    background-color: rgb(30, 30, 30);
    transition-duration: 0.2s;
    margin-top: 10px;
    border-width: 0;
    color: white;
    padding: 6px 10px;
    border-radius: 6px;
}
button:hover {
    background-color: rgb(7, 114, 255);
    box-shadow: 1em;
    cursor: pointer;
}
footer{
    padding-top: 20px;
    text-align: center;
}
.logo {
    height: 30px;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}
.accordion {
    max-width: 600px;
}
.accordion-item {
    border-bottom: 1px solid #ddd;
}
.accordion-input {
    display: none;
}
.accordion-label {
    user-select: none; /* Non-selectable for modern browsers */
    display: block;
    padding: 15px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.5em;
}
.accordion-label:hover {
    color: #d9d9d9;
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: 0.1s ease-out;
    padding: 0 15px;
}
.accordion-input:checked+.accordion-label+.accordion-content {
    max-height: 600px;
    padding: 15px;
}
::selection {
  color: black;
  background-color: white;
}
