/* fontes */
@font-face {
    font-family: SEGA;
    src: url("fonts/SEGA.ttf");
}

@font-face {
    font-family: "Voxel";
    src: url("../../../css/fonts/Voxel.otf");
}

/* selecionar texto */
::selection {
    text-shadow: 0 0 2px #ffa500;
    color: #ffa500;
}
  
::-moz-selection {
    text-shadow: 0 0 2px #ffa500;
    color:#ffa500;
}

/* scrollbar */
@supports (-moz-appearance: none) {
    * {
        scrollbar-color: #0000ff #00000000;
        scrollbar-width: thin;
        scrollbar-gutter: stable;
    }
}

::-webkit-scrollbar {
    width: 5px;
    height: 10px;
    background: #00000000;
}
  
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #0000ff;  
}

::-webkit-scrollbar-thumb:hover {
    background: #0000ff;  
}

/* * */
* {
    margin: 0px;
    padding: 0px;
    cursor: url(https://cur.cursors-4u.net/games/gam-1/gam65.ani),
    url(https://cur.cursors-4u.net/games/gam-1/gam65.png), auto;
}

/* body */
body {
    background-image: url("../img/emerald-coast.jpg");
    background-size: cover;
    margin: 0px;
    padding: 0px;
}

.wrapper {
    display: flex;
    flex-flow: row wrap;
}

/* aside */
aside {
    width: 120px;
    position: fixed;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    margin: 15px 0px 15px 15px;
}

header img {
    width: 125px;
    transition: 0.2s;
}

header img:hover {
    transform: scale(1.075);
}

/* nav */
nav {
    display: flex;
    flex-flow: column;
    gap: 10px;
    align-items: center;
}

nav a {
    width: 50px;
    display: flex;
    flex-flow: column wrap;
    color: white;
    border-radius: 50%;
    padding: 4px 12px;
    font-family: "Voxel";
    font-size: 1.35rem;
    text-align: center;
    background-color: rgba(0, 0, 139, 0.95);
}

nav a:first-child {
    width: 45px;
    background-color: rgba(0, 0, 0, 0.95);
}

nav hr {
    width: 100px;
    margin: 5px auto;
    border: 1px dashed rgba(0, 0, 139, 0.25);
}

nav img {
    width: 45px;
    margin: -10px auto auto -35px;
    display: block;
    position: absolute;
    visibility: hidden;
}

nav a:hover img {
    display: block;
    visibility: visible;
}

/* player */
audio {
    display: none;
}

.player {
    display: flex;
    flex-flow: column nowrap;
    color: #ffffff;
    padding: 10px;
    margin-top: 10px;
    text-align: center;
}

.player button {
    width: 30px;
    height: 30px;
    padding: 3px;
    border: none;
    color: #ffffff;
    background-color: transparent;
}

.player button:hover {
    color: #0000ff
}

.player button:active {
    transform: scale(0.85);
}

.player a {
    color: #ffffff;
}

/* buttons */
.buttons {
    padding: 5px;
    margin: 5px 0px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* main */
main {
    margin: 15px 15px 15px 150px;
    max-height: 600px;
    padding: 20px;
    border-radius: 20px;
    display: block;
    color: white;
    overflow-y: scroll; background: rgba(0, 0, 139, 0.75);
    border: 2.25px solid rgba(0, 0, 0, 0.75);
}

h1 {
    font-family: "SEGA";
    font-size: 2.35rem;
    font-weight: lighter;
    color: rgba(255, 255, 255, 0.65);
    margin: 15px auto;
    padding: 15px;
    text-align: center;
}

h2 {
    font-family: "Voxel";
    font-size: 1.5rem;
    font-weight: bolder;
    text-decoration: underline;
    margin: 20px auto 15px auto;
}

.sonic-pose-maneira-1 {
    width: 450px;
    padding: 0px 0px 0px 15px;
    float: right;
}

.sonic-pose-maneira-2 {
    width: 400px;
    padding: 0px 20px 0px 45px;
    float: right;
}

.sonic-pose-maneira-3 {
    width: 300px;
    padding: 0px 30px 0px 150px;
    float: right;
}

.lista-jogo {
    display: flex;
    flex-flow: column wrap;
    gap: 15px;
}

.lista-jogo .titulo {
    font-family: "Voxel";
    font-size: 1.25rem;
    font-weight: bolder;
    margin: 5px 0px;
}

.lista-jogo img {
    width: 100px;
    margin: 5px 15px 0px 0px;
    display: block;
    float: left;
}

#prints {
    text-align: center;
}

.prints {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 5px;
}

.prints img {
    width: 288px;
    height: 162px;
}

/* viewports */
@media (max-width: 768px) {
    body {
        background-image: url("../img/emerald-coast.jpg");
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        margin: 0px;
        padding: 0px;
    }

    .wrapper {
        display: flex;
        flex-flow: column wrap;
    }

    aside {
        width: auto;
        position: relative;
        flex-flow: column wrap;
    }

    header {
        text-align: center;
    }

    main {
        margin: 35px;
    }

    .player {
        text-align: center;
        color: #000000
    }

    .player button {
        background-color: #0000ff;
        border-radius: 50%;
    }

    .player button:hover {
        color: #000000;
    }

    .player a {
        color: #000000;
    }

    .buttons {
        flex-flow: row wrap;
    }

    .sonic-pose-maneira-1 {
        width: 200px;
    }

    .sonic-pose-maneira-2 {
        width: 150px;
    }

    .sonic-pose-maneira-3 {
        width: 100px;
    }
}