* {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    margin: 0 auto;
    padding: 0;
}

main {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    justify-content: center;
}

.infos-group {
    margin-top: 40px;
}

main > div {
    display: flex;
    flex-direction: column;
    gap: 2em;
}

.about-infos p {
    text-align: justify;
    color: rgb(41, 41, 41);
}

.about-infos {
    align-self: center;
    padding: 10px;
    max-width: 700px;
    box-sizing: border-box;
    border-radius: 20px;
    background-color: rgb(241, 242, 245);
    transition: transform 0.1s ease-out, height 0.2s ease-in-out;
}

.about-infos h1 {
    color: rgb(46, 119, 255);
}

.footer-about {
    position: relative;
    margin-top: 150px;
    background-color: rgb(0, 81, 255);
    border-top: 10px solid rgb(28, 119, 255);
    box-sizing: border-box;
    padding: 15px;
    color: white;
    height: 150px;
}

.thanks { 
    align-self: center;
    margin-top: 50px;
    max-width: 600px;
}

.title {
    margin-top: 150px;
}

.title, .thanks {
    color: rgb(99, 99, 99);
}

.author-info-container {
    width: 100%;
    height: 500px;
    padding: 50px;
    box-sizing: border-box;
    margin-bottom: 90px;
    display: flex;
    align-items: center;
    gap: 25px;
    background-color: rgb(184, 202, 223);
}

.image-area {
    height: 350px;
    width:  350px;
    overflow: hidden;
    border-radius: 100px;
}

.image-author {
    object-fit: cover;
    width: inherit;
    object-position: 0 -150px;
}

.author-name {
    font-size: 50px;
    margin-bottom: 20rem;
}