@import './mainHeader.css';


.container {
    min-height: calc(100vh - 6em);
    background-image: url(../img/rdsette-min.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.container .carte{
    width: min(440px, calc(100% - 1rem));
    min-height: 400px;
    margin: 0 20px 0 0;
    background: rgba(255, 254, 254, 0.678);
    display: flex;
    align-items: center;
    border-radius: 5px;
    padding: 10px;
    gap: 15px;
}
.profil-img{
    width: 180px;
    display: flex;
    flex-direction: column;
    padding: 10px;
    gap: 15px;
}
.profil-description{
    width: 260px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
}
.profil-description h2{
    text-shadow: 0 2px 3px rgb(65, 65, 65);
    text-transform: uppercase;
    font-size: 20px;
    color: rgb(20, 0, 173);
}
.profil-description p{
    text-align: start;
}

.link-reseaux{
    display: flex;
    width: 100%;
    gap: 8px;
    justify-content: space-between;
    align-items: center;
}
.link-reseaux svg{
    width: 40px;
    padding: 5px;
}
.linkedin{
    color: #0961b8;
    transition: .3s;
}
.github{
    color: #1a1d21;
    transition: .3s;
}
.youtube{
    color: #f20000;
    transition: .3s;
}

.linkedin:hover, .github:hover,
.youtube:hover, .gitlab:hover{
    opacity: .75;
}

.button{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.button button{
    padding: 7px;
    border: 1px solid;
    font-size: 10px;
    transition: all 0.4s;
    background: none;
    cursor: pointer;
}
.button button:hover{
    transform: scale(1.1);
    color: blue;
    background: #fff;
    border: 1px solid blue;
}