*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


body {
    background: linear-gradient(135deg, white, white);
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header{
    background-color: purple;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

header h1 {
    font-size: 2.5rem;
    letter-spacing: 2px;

}

nav {
    display: flex;
    justify-content: center;
    background-color: #8e24aa;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

nav a{
    color: white;
    text-decoration:none;
    margin: 0 2rem;
    font-weight: bold;
    font-size: 1.1rem;
    position: relative;
    transition: all 0.3s ease;
}

nav a::after{
    content: '';
    display: block;
    height: 3px;
    width: 0;
    background: #00ffea;
    transition: 0.3s;
    position: absolute;
    bottom: -5px;
    left: 0;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: #00ffea;
    transform: scale(1.05);
}


main {
    max-width: 900px;
    margin: auto;
    padding: 0 1rem;
    text-align: center;
    font-size: 1.2rem;
    background-color: rgba(255,255,255,0.8);
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}


footer {
    text-align: center;
    padding: 2rem 1rem;
    margin-top: auto;
    background-color: #6a1b9a;
    color: #fff;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}


/* Projets */



div{
    text-align: center;
    background-image:url(Godot_icon.svg.png) ;
    background-size: 300px;
    width: 300px;
    height: 300px;
    border-top: 0px;
    border-bottom: 3px solid;
    border-right: 3px solid;
    border-left: 3px solid;
    margin: 10em;
    margin-top: 20em;
}

div h5 {
    margin-bottom: 5em;
}

div p {
    margin-bottom : -10em;
    border-bottom: 3px solid;
}


/* Autres */

#autres {
    text-align: center;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border-radius: 20px;
    background-color: #00ffea;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);

}
