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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121212;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-image: url("bg.jpg");  
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
}

.container {
    background-color: rgba(25, 25, 25, 0.9);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.9);
    max-width: 400px;
    width: 100%;
    text-align: center;
}

li {
    list-style-type: none;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #e50914; /* Rappel de style à la Mission Impossible */
    text-transform: uppercase;
    letter-spacing: 3px;
}

.form-group {
    margin-bottom: 2rem;
    text-align: left;
}

.label {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

input[type="text"] {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    background-color: #1f1f1f;
    border: none;
    border-radius: 5px;
    color: #ffffff;
    outline: none;
    transition: box-shadow 0.3s;
    text-align: center;
}

input[type="text"]:focus {
    box-shadow: 0 0 10px #e50914;
}

button {
    background-color: #e50914;
    color: white;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
}

button:hover {
    background-color: #b20610;
    transform: translateY(-2px);
}

.mission-link {
    display: inline-block;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: #e50914;
    text-decoration: none;
    border: 2px solid #e50914;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    text-transform: uppercase;
}

.mission-link:hover {
    background-color: #e50914;
    color: white;
}

.container {
    background-color: rgba(25, 25, 25, 0.9);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.9);
    max-width: 500px;
    width: 100%;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #e50914;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.form-group {
    margin-bottom: 2rem;
    text-align: left;
}

.label {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
    display: block;
    text-align: center;
}

textarea, select {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    background-color: #1f1f1f;
    border: none;
    border-radius: 5px;
    color: #ffffff;
    outline: none;
    transition: box-shadow 0.3s;
    text-align: center;
}

textarea:focus, select:focus {
    box-shadow: 0 0 10px #e50914;
}

.btn {
    background-color: #e50914;
    color: white;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn:hover {
    background-color: #b20610;
    transform: translateY(-2px);
}

/* Styles for the briefing container */
.briefing-container {
    background-color: rgba(50, 50, 50, 0.9);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.briefing h2 {
    font-size: 2rem;
    color: #e50914;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.briefing p {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.5;
    text-align: justify;
}

.mission-reminder {
    font-style: italic;
    color: #e50914;
    margin-top: 1rem;
}

/* Existing container styling adjustments if necessary */
.container {
    margin-top: 0; /* This ensures no extra margin when placed below the briefing */
}

.mission {
    list-style: none;
}

.completed {
    text-decoration: line-through;
}

.easy {
    color: green;
}
.medium {
    color: orange;
}
.hard {
    color: red;
}