@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Young+Serif&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tilt+Neon&display=swap');

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

body {
    font-family: 'Tilt Neon', sans-serif;
    margin: 0;
    padding: 0;
}

#titre_principale {
    font-family: 'VT323', monospace;
    color: rgb(0, 255, 255);
    margin: 20px;
    text-align: center;
}

#profile_pic {
    border-radius: 50%;
}

header {
    background-color: #000000;
    color: #fff;
    padding: 10px 0;
}

.about,
.portfolio {
    padding: 30px 0;
    text-align: center;
}

.hero {
    background-color: #f4f4f4;
    text-align: center;
    padding: 50px 0;
}

.titres {
    font-family: 'Young Serif', serif;
}

footer {
    background-color: #000000;
    padding: 10px;
    position: fixed;
    width: 100%;
    bottom: 0;
    display: flex;
}

#copyright {
    color: white;
    text-align: left;
    flex: 1;
    /* Pushes content to the left */
}
  
#version {
    color: white;
    text-align: center;
    flex: 1;
    /* Centered content */
}

#version a {
    color: white;
    text-decoration: none;
}

#version a:hover {
    color: aqua;
}
  
#opensource {
    color: white;
    text-align: right;
    text-decoration: none;
    flex: 1;
    /* Pushes content to the right */
}

#opensource:hover {
    color: aqua;
}

.reseaux {
    color: #000000;
    padding: 10px;
}

.reseaux:hover {
    color: rgb(0, 110, 255);
}

.spoiler {
    color: black;
    background-color: black;
}

.spoiler:hover {
    background-color: white;
}