/* Start Base */
body {
    background-color: #252525;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

p{
    font-size: 1.2em;
    color: rgb(172, 172, 172);
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
ul li {
    font-size: 1.2em;
    color: rgb(172, 172, 172);
}

a {
    color: #1e90ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.superposition{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.3;
    z-index: 10;
    top: 0%;
    left: 0;
    border-radius: 10px;
}
/* End Base */
/* Start Header */
.container {
    margin: 0px 20% 0px 20%;
}

.header {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 100%;
    height: 100vh;
    text-align: center;
    margin-bottom: 20px;
}

.header-container{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    row-gap: 50px;
}

.title-container{
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.title{
    text-align: left;
}

.image{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.header h1 {
    width: 100%;
    font-size: 4.5em;
    margin: 0;
    color: #fdeb4cdc;
}

.header h2 {
    font-size: 1.2em;
    color: #777;
    margin-top: 10px;
}

.profile-image {
    width: 450px;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
}
/* End Base */

/* Start Highlighted Text */
.highlighted-text-title{
    width: 100%;
    text-align: center;
    font-size: 1.5em;
    margin: 0;
    color: #fdeb4cdc;
    margin-bottom: 100px;
}
.border-container{
    margin-top: 50px;
    margin-bottom: 50px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
.border{
    width: 30%;
    height: 1px;
    background-color: rgb(172, 172, 172);
    border-radius: 10px;
}

.highlighted-text-container{
    margin-top: 50px;
    margin-bottom: 250px;
    padding: 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    row-gap: 50px;
    background: rgb(43, 43, 43);
    border-radius: 20px;
    box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.23);
    -webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.23);
    -moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.23);
}

.text-highlighted{
    width: 20%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.text-highlighted h1{
    font-size: 2.5em;
    margin: 0;
    color: #fdeb4cdc;
}
/* End Highlighted text */

/* Start Hobbys */
.hobbys-picture-container{
    width: 100%;
    height: 300px;
    position: relative;
}
.hobbys-picture{
    width: 100%;
    height: 100%;
    background-image: url(images/loisirs.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
}

.hobbys-container{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin: 100px 0px 100px 0px;
}

.hobbys-text{
    text-align: center;
}
.hobbys-text h3{
    font-size: 2.5em;
    margin: 0;
    color: #fdeb4cdc;
    margin-bottom: 50px;
}
.hobbys-text ul{
    line-height: 35px;
}
/* End Hobbys */

/* Start Blog */
.blog-picture-container{
    width: 100%;
    height: 300px;
    position: relative;
}
.blog-picture{
    width: 100%;
    height: 100%;
    background-image: url(images/work.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
}

.blog-container{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin: 100px 0px 100px 0px;
}

.blog-text{
    text-align: center;
}
.blog-text h3{
    font-size: 2.5em;
    margin: 0;
    color: #fdeb4cdc;
    margin-bottom: 50px;
}

.text{
    display: flex;
    justify-content: space-around;
}
.text-content{
    max-width: 70%;
}
/* End Blog */
