* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'QuietBrokenVoice';
    src: url('font/QuietBrokenVoice.ttf') format('truetype');
}

::selection{
    background-color: #000;
    color: #fff;
}

body {
    padding: 60px;
    background-color: black;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.caveira {
    width: 200px;
    height: auto;
    filter: contrast(300%) brightness(300%) hue-rotate(310deg) saturate(400%) opacity(0%);
    position: relative;
    animation: tremendo 10s infinite;
}

@keyframes tremendo {
    0% {
        transform: rotate(0deg) translate(10px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translate(10px) rotate(-360deg);
    }
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    width: 500px;
    position: relative;
    animation: tremendo 0s infinite;
}

main .titulo {
    width: 100%;
    height: 100px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}

main .titulo p {
    color: rgba(0, 0, 0, 0.5);
}

main .jogo {
    width: 100%;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

main .boneco {
    position: relative;
    width: 200px;
    height: 200px;
    top: -30px;
}

main .boneco .cabeca {
    display: none;
    position: relative;
    width: 40px;
    height: 40px;
    border: 6px solid black;
    border-radius: 100%;
    top: 20px;
    left: 70px;
    transform: rotate(45deg);
}

main .boneco .corpo {
    display: none;
    position: relative;
    height: 80px;
    border: 6px solid black;
    border-top: none;
    border-right: none;
    border-bottom: none;
    top: 20px;
    left: 92px;
}

main .boneco .bracoE,
.bracoD {
    display: none;
    position: relative;
    height: 80px;
    border: 6px solid black;
    border-top: none;
    border-right: none;
    border-bottom: none;
}

main .boneco .pernaE,
.pernaD {
    display: none;
    position: relative;
    height: 80px;
    border: 6px solid black;
    border-top: none;
    border-right: none;
    border-bottom: none;
}

main .boneco .bracoE {
    top: -5px;
    left: 35px;
    transform: rotate(45deg);
}

main .boneco .bracoD {
    top: -224px;
    left: 90px;
    transform: rotate(315deg);
}

main .boneco .pernaE {
    top: -97px;
    left: 58px;
    transform: rotate(30deg);
}

main .boneco .pernaD {
    top: -274px;
    left: 100px;
    transform: rotate(330deg);
}

main .jogo .palavra {
    font-size: 40px;
    text-align: center;
    padding: 0 20px;
}

main .jogo form {
    width: 100%;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

main .jogo form input {
    width: 100px;
    height: 100px;
    font-size: 100px;
    border: 3px solid black;
    border-radius: 10px;
    text-align: center;
}

main .jogo form input:focus {
    outline: none;
}

main .jogo form button {
    border: 2px solid white;
    border-radius: 10px;
    background-color: rgb(0, 0, 0);
    color: white;
    padding: 10px;
    cursor: pointer;
}

main .jogo .reniciar {
    display: none;
    border: 2px solid white;
    border-bottom: 6px solid;
    border-radius: 10px;
    background-color: red;
    color: white;
    padding: 10px;
    cursor: pointer;
}

@media only screen and (max-width: 779px) {
    body {
        padding: 60px 0;
    }

    .caveira {
        width: 150px;
        height: auto;
    }

    main {
        width: 600px;
    }
}

@media only screen and (max-width: 518px) {
    body {
        padding: 40px 0;
    }

    .caveira {
        width: 100px;
    }

    main {
        width: 700px;
    }

    main .titulo h1{
        font-size: 24px;
    }
    main .titulo p{
        font-size: 12px;
    }
    main .boneco {
        width: 150px;
        height: 150px;
    }

    main .boneco .cabeca {
        width: 40px;
        height: 40px;
        border: 5px solid black;
        top: 20px;
        left: 50px;
    }

    main .boneco .corpo {
        height: 80px;
        border: 5px solid black;
        border-top: none;
        border-right: none;
        border-bottom: none;
        top: 20px;
        left: 72px;
    }

    main .boneco .bracoE,
    .bracoD {
        height: 80px;
        border: 5px solid black;
        border-top: none;
        border-right: none;
        border-bottom: none;
    }

    main .boneco .pernaE,
    .pernaD {
        height: 80px;
        border: 5px solid black;
        border-top: none;
        border-right: none;
        border-bottom: none;
    }

    main .boneco .bracoE {
        top: -22px;
        left: 24px;
    }

    main .boneco .bracoD {
        top: -203px;
        left: 78px;
    }

    main .boneco .pernaE {
        top: -110px;
        left: 42px;
    }

    main .boneco .pernaD {
        top: -264px;
        left: 82px;
    }

    main .jogo .palavra {
    font-size: 30px;
    padding: 0 15px;
}
}
@media only screen and (max-width: 300px) {
    .caveira {
        width: 50px;
    }

    main .jogo .palavra {
    font-size: 20px;
    padding: 0 10px;
}
}