/** @format */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100dvh;
    background-color: #2e2a24;
    color: #f9d094;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
        sans-serif;
}

main {
    max-width: 700px;
    margin: auto;
    padding: 2rem;
    text-align: center;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.player {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem auto;
    background-color: #513d1f;
    color: #bd852c;
    border-radius: 1rem;
    width: fit-content;
    padding: 1rem;
    font-size: 1.3rem;
    text-align: left;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}

.player img {
    width: 4rem;
    aspect-ratio: 1/1;
    border-radius: 50%;
    margin-right: 1rem;
    background-color: #d3a459;
}

.player h3 {
    font-size: 2rem;
}

footer {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    font-size: 1rem;
    color: #d3a459;
    text-align: right;
}
a {
    color: rgb(190, 134, 45);
    text-decoration: none;
}
a:hover {
    color: #d3a459;
    text-decoration: underline;
}

.line {
    background-color: #1b1916;
    height: 2px;
    border-bottom: #38342e solid 1px;
    margin: 2rem;
}

button {
    background-color: #d3a459;
    color: #2e2a24;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 1.2rem;
    cursor: pointer;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
        sans-serif;
}

button:hover {
    background-color: #bd852c;
}
.logo {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    margin-bottom: 1rem;
    display: block;
}

#reader {
    width: 300px;
    margin: 0 auto;
    margin-bottom: 2rem;
}

video {
    border-radius: 1rem;
}

.timer {
    font-size: 1.5rem;
}

#part2 {
    display: none;
}

.finished #part1 {
    display: none;
}

.finished #part2 {
    display: block;
}
input{
    background-color: #FFF;
    color: #2e2a24;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 1.2rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
        sans-serif;
}