:root {
    --dark-cm: #150F11
}

@font-face {
  font-family: grenze; /* set name */
  src: url(/theme/fonts/Grenze-Regular.ttf); /* url of the font */
}

/* BASE LAYOUT ------------------------------------------- */

body {
    background-color: var(--dark-cm);
    color: white;
    margin: 0px;
    padding: 0px;
    font-family:Arial, Helvetica, sans-serif;
    font-family: grenze;
    font-size: 24pt;
}

.header-content-footer-layout {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.header-content-footer-layout div {
    padding: 20px 20px;
    box-sizing: border-box;
    min-width: 0;
}

.full-page-container {
    width:100%;
    height: 100vh;
    overflow:hidden;
    box-sizing: border-box;
}

.header {
    width: 100%;
    text-align: center;
    padding:10px;
}

.header h1 {
    font-size: 300%; 
    padding: 10px; 
    margin: 10px;
    line-height: 0.7;
}

.footer {
    width: 100%;
    text-align: center;
}

.footer form::before {
    content: "";
    display: block;
    height: 3px; /* Adjust height for thickness */
    background-color: white; /* Change color as needed */
    margin-bottom: 5px; /* Space below the divider */
    margin-top: 5px;
  }

.centered-content-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    min-width:0;
}

/* ------------------------------------------- */


/* FORMS */ 

form {

}

input {
    background-color: var(--dark-cm);
    color: white;
    border-style: solid;
    border-width: 1px;
    border-color: white;
    border-radius: 0px;
    font-size: 14pt;
    font-family: grenze;
    padding: 2px 10px;
}

input:focus {
    outline: 1px solid white;
}

input:hover {
    outline: 2px solid white;
}

input:focus {
    outline: 3px solid white;
    border-color: white;
}

/* SPECIFIC ELEMENTS */

#tete-de-mort-logo {
    width: 20vw;
    height: 20vh;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


@media screen and (max-width: 600px) {
  body {
    .header-content-footer-layout {
        height: auto;
        min-height: 100vh;
    }
  }
  .footer form::before {
    content: "";
    display: block;
    height: 3px; /* Adjust height for thickness */
    background-color: white; /* Change color as needed */
    margin-bottom: 2px; /* Space below the divider */
  }
  .full-page-container {
        height: auto;
        min-height: 100vh;
        overflow-y: scroll;
        box-sizing: border-box;
    }
}

@media screen and (max-width: 500px) {
    .footer {
        font-size: 20pt;
    }
    .footer form {
        display: flex;
        flex-direction: column;
        gap : 10px;
    }
}