* {
    box-sizing: border-box;
}


body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: radial-gradient(circle at top, #111, #000);
    color: #FFD700;
    display: flex;
    align-items: center;
    height: 100vh;
}

/* CARTE PRINCIPALE */
.card {
	margin-left:170px;
    background: #111;
    padding: 30px;
    border-radius: 15px;
    width: 400px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}
.card2 {
	margin-left:100px;
    background: #111;
    padding: 30px;
    border-radius: 15px;
    width: 400px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

/* TITRE */
h1 {
    text-align: center;
    margin-bottom: 20px;
}

/* LABEL */
label {
    font-size: 14px;
    opacity: 0.8;
}

/* INPUT */
textarea, input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: none;
    background: #222;
    color: #fff;
    outline: none;
}

/* BOUTONS */
.buttons {
    display: flex;
    justify-content: space-between;
}

button {
    flex: 1;
    margin: 5px;
    padding: 10px;
    border: none;
    border-radius: 8px;
    background: #FFD700;
    color: black;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #00aa00;
    color: white;
    transform: scale(1.05);
}

/* RESULTAT */
#output {
    background: #eee;
    color: black;
}

/* MENU BURGER */
.menu-btn {
    position: absolute;
    top: 20px;
    right: 20px;
}


.menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: yellow;
    transition: 0.3s;
}

.menu-btn:hover  span{
background-color: #18c57d;
}

/* Menu caché */
.menu {
    display: none;
    flex-direction: column;
    background-color: #000000;
    position: absolute;
    top: 50px;
    right: 20px;
    border-radius: 5px;
    overflow: hidden;
}

.menu a {
    color: #FFD700;
    padding: 10px 20px;
    text-decoration: none;
}

.menu a:hover {
    background-color: #222222;
}

/* Bouton fermer */
.close-btn {
    font-size: 20px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    text-align: right;
    padding: 10px 20px;
}
a:visited {
    color: FFD700;
}
