* {
    margin: 0;
    padding: 0;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

body {
    background-color: #333;
}

#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #333;
    border-bottom: solid #222 2px;
    box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

#header.hidden {
    transform: translateY(-100%);
}

h1 {
    font-size: 1.5rem;
    text-align: center;
    padding: 0.5rem;
    color: #eee;
    text-transform: uppercase;
}

h2 {
    font-size: 1.25rem;
    text-align: center;
    padding: 0.5rem;
    color: #eee;
    text-transform: uppercase;
}

#imgContainer {
    display: flex;
    justify-content: center;
    margin-top: 6rem;
    
    img {
        display: block;
        object-fit: cover;
        height: 400px;
        border: solid #222 2px;
        border-radius: 0.5rem;
        box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.4);
    }
}

#selectorContainer {
    text-align: right;
    margin: 1rem;
}

#homeContent {
    border: solid #222 2px;
    border-radius: 0.5rem;
    padding: 1rem;
    margin: 0.5rem;
    background-color: #444;
    color: #eee;
    text-align: center;

    #linkContainer {
        display: flex;
        margin-top: 0.5rem;
        
        a {
            margin: 0 auto;
            padding: 0.5rem;
            border: solid #222 2px;
            border-radius: 0.5rem;
            background-color: #333;
            color: #eee;
            text-decoration: none;
            text-transform: uppercase;
            cursor: pointer;
            transition: background-color 0.3s ease;
    
            &:hover {
                background-color: #444;
            }
        }
    }
}

#content {
    border: solid #222 2px;
    border-radius: 0.5rem;
    padding: 1rem;
    margin: 0.5rem;
    margin-top: 8rem;
    background-color: #444;
    color: #eee;

    .chapitre {
        padding: 1rem;
        text-transform: uppercase;
        text-align: right;
        text-decoration: underline 2px;
        font-weight: bold;
        display: none;
    }

    .texte {
        line-height: 1.5rem;
        letter-spacing: 0.1rem;
        display: none;

        p {
            margin: 0.5rem 0;
        }

        p::before {
            content: "-";
            margin-right: 0.25rem;
        }
    }

    .fin {
        text-align: center;
    }
}

#footer {
    border-top: solid #222 2px;
    color: #eee;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    padding: 1rem;

    .navigation {
        padding: 0.5rem;
        border: solid #222 2px;
        border-radius: 0.5rem;
        background-color: #444;
        cursor: pointer;
    }

    .no {
        border: none;
        background-color: #333;
        text-decoration: underline;
        padding: 0.5rem;
    }

    .left::before {
        content: "<";
        margin-right: 0.25rem;
    }
    
    .right::after {
        content: ">";
        margin-left: 0.25rem;
    }
}