@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Oswald:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@700&display=swap');

@font-face {
    font-family: 'Hitmarker Wide';
    src: url('fonts/HitmarkerWide-Bold.woff2') format('woff2'),
         url('fonts/HitmarkerWide-Bold.woff') format('woff'),
         url('fonts/HitmarkerWide-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Hitmarker Regular';
    src: url('fonts/HitmarkerNormal-Regular.woff2') format('woff2'),
         url('fonts/HitmarkerNormal-Regular.woff') format('woff'),
         url('fonts/HitmarkerNormal-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


@font-face {
    font-family: 'Hitmarker Medium';
    src: url('fonts/HitmarkerNormal-Medium.woff2') format('woff2'),
         url('fonts/HitmarkerNormal-Medium.woff') format('woff'),
         url('fonts/HitmarkerNormal-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


@font-face {
    font-family: 'Hitmarker Light';
    src: url('fonts/HitmarkerNormal-Light.woff2') format('woff2'),
         url('fonts/HitmarkerNormal-Light.woff') format('woff'),
         url('fonts/HitmarkerNormal-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}



/* Variáveis CSS para personalização */
:root {
    --background-image: url('bg.png');
    --background-color: #1b1c1e; /* Preto */
    --primary: #97c93c; /* Verde Médio */
    --secondary-dark: #59594d; /* Cinza Escuro */
    --secondary-light: #c8c2a5; /* Bege Claro */
    --secondary-very-dark: #af3009; /* vermelho escuro */
}

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

html {
    height: 100%;
    background-color: var(--background-color);
}

body {
    min-height: 100vh;
    font-family: 'Hitmarker Regular', 'Oswald', sans-serif;
    letter-spacing: 1px; /* Adiciona espaçamento entre as letras */
    color: white;
    margin: 0;
    display: flex;
    flex-direction: column;
}

body.background-image {
    background-image: var(--background-image);
    background-size: cover;
    background-attachment: fixed; /* Fixa o background */
    background-repeat: no-repeat;
    background-position: center center;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Hitmarker Regular', 'Oswald', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px; /* Adiciona espaçamento entre as letras */
}

/* Layout Geral */
.container {
    padding: 10px;
    min-height: calc(100vh - 40px); /* Garante que a altura mínima seja 100vh */
    max-width: 1000px; /* Define a largura máxima do container */
    width: 100%; /* Garante que o container ocupe toda a largura disponível */
    margin: 0px auto;
    flex-grow: 1; /* Permite que o container cresça para preencher a tela */
}

header, footer {
    text-align: center;
    margin-bottom: 20px;
}

footer p {
    font-size: 14px;
    margin-top: 20px;
    margin-bottom: 20px;
}


.date-info p {
    font-size: 24px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}


.regras {
    font-size: 14px;
    text-align: left;
}

.regras p {
    font-size: 20px;
    text-align: left;
}

.custom-link {
    color: white;
    /* Adicione outras propriedades de estilo aqui, se necessário */
}


.video-tutorial {
    max-width: 500px;
    margin: 20px auto;
    text-align: center;
}

.video-tutorial h2 {
    font-family: 'Hitmarker Wide', 'Oswald', sans-serif;
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--primary);
}

video {
    border: 4px solid var(--primary);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}



