/* Estilos para o cabeçalho */
#header {
    color: hsl(202, 88%, 68%);
    text-align: center;
    position: relative;
    top: 0;
    left: 0;
    z-index: 0;
}

#header img {
    width: 50%;
    height: auto;
    object-fit: contain;
    margin-right: 10%;
}

@font-face {
    font-family: "Clicker Script";
    src: url("../css/ClickerScript-Regular.ttf") format("truetype");
    font-display: swap;
}

/* Estilos para tornar o cabeçalho responsivo */
@media (max-width: 768px) {
    #header {
        padding: 1.5rem;
    }

    #header img {
        width: 100%;
        margin-right: auto;
    }
}