/* Importation des polices */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400&family=Orbitron:wght@700&display=swap');

/* Corps principal */
body {
    font-family: 'Raleway', sans-serif;
    background: #0d1117; /* Fond sombre */
    color: #c9d1d9; /* Texte clair */
    margin: 0;
    padding: 0;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* En-tête */
header {
    text-align: center;
    background: linear-gradient(45deg, #2f81f7, #1f6fec);
    color: #fff;
    padding: 40px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-bottom: 2px solid #1f6fec;
}

header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin: 0;
}

header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    margin-top: 10px;
}

/* Sections */
main {
    padding: 20px 5%;
}

h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: #58a6ff;
    margin-bottom: 15px;
}

p {
    margin: 20px 0;
    color: #8b949e;
}

/* Images */
img.section-img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* IDs */
#header {
    border-bottom: 4px solid #f0f6fc;
}

#intro {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #58a6ff;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

/* Classes */
.personal {
    background: rgba(40, 44, 52, 0.8);
    border: 1px solid #21262d;
    border-radius: 8px;
    padding: 15px;
}

/* Liste */
ul {
    list-style: square;
    margin: 20px 0;
    padding-left: 20px;
}

ul li {
    margin-bottom: 10px;
    color: #c9d1d9;
}

/* Pied de page */
footer {
    text-align: center;
    background: #161b22;
    color: #8b949e;
    padding: 10px 0;
    margin-top: 20px;
}

/* Autres propriétés */
a {
    color: #58a6ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Effets visuels */
h3:hover {
    color: #f78166;
    transition: color 0.3s ease-in-out;
}

img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
}

/* Section des aliens */
#aliens {
    background: rgba(40, 44, 52, 0.9);
    border: 2px solid #21262d;
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
}

#aliens h3 {
    font-family: 'Orbitron', sans-serif;
    color: #e5c07b;
    text-align: center;
    margin-bottom: 20px;
}

#aliens article {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #2f81f7;
    border-radius: 8px;
    background: #161b22;
}

#aliens article h4 {
    font-size: 1.5rem;
    color: #58a6ff;
}

#aliens article p {
    color: #8b949e;
}

#aliens article img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    margin-top: 10px;
}
