textarea {
    resize: none;
}

.fond_blanc {
    background : white;
    height : 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: 0.6s ease-in-out;
}

.logo {
    width : auto;
    height: auto;
    max-height : calc(80% - 10px);
    max-width: 80%;
    box-shadow: 0 0 20px rgb(122, 117, 117);
}

.ignorer_intro {
    position : absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: right;
    margin: 0;
    cursor : pointer;
}

.ignorer_intro svg {
    margin-left : 4px;
    margin-right : 4px;
}

body {
    width: 100%;
    height : 100%;
    display : flex;
    background : black;
    flex-direction: column;
    align-items: center;
    margin: 0;
    font-family: 'Poppins';
}

.form {
    display: flex;
    flex-direction: column;
    align-items: left;
}

.conteneur_global {
    height : 100%;
    max-width: 1000px;
    padding: 8px;
    color : white;
}

.liste_projets {
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    flex-direction: row;
}

.wrapper_carte_projet {
    width : 140px;
    height : 235px;
    position : relative;
}

.carte_projet {
    cursor : pointer;
    position: absolute;
    text-decoration: none;
    top : 50%;
    left : 50%;
    transform: translate(-50%,-50%);
    width : 120px;
    height : 215px;
    min-height : 215px;
    padding : 4px;
    border-radius: 6px/6px;
    background : darkgrey;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: top;
    font-size : 1rem;
    transition: 0.4s;
}

.carte_projet:hover, .carte_projet:focus, .carte_projetClicke {
    height : fit-content;
    padding : 10px;
    box-shadow: 0 0 20px rgb(122, 117, 117);
    z-index: 2;
    outline: none;
}

.carte_projet:active {
    padding : 4px;
    box-shadow: none;
}

.carte_projet .logo_projet {
    height : 100px;
    width : 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background : grey;
    border-radius: 50%;
}

.carte_projet .logo_projet svg {
    height : 60%;
    width: 60%;
}

.carte_projet .nom_projet {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.carte_projet .description_projet {
    font-size: 0.7rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition : 0.4s;
}

.carte_projet .decouvrir {
    background : white;
    color : black;
    box-shadow: 0 0 20px rgb(134, 131, 131);
    font-size: 12px;
    margin : 4px;
    padding: 2px;
    border-radius: 4px/4px;
    align-items: center;
    display: none;
    transition : 0.4s;
}

.carte_projet .decouvrir:hover {
    transform : scale(1.15);
}

.carte_projet .decouvrir * {
    margin : 1px;
}

.carte_projet:hover .description_projet,.carte_projetClicke .description_projet {
    display: block;
    height: max-content;
    overflow : auto;
}

.carte_projet:hover .decouvrir, .carte_projetClicke .decouvrir {
    display: flex;
}


.wrapper_texte_carte {
    height : calc(100% - 100px);
    transition : 0.2s;
}

.wrapper_texte_carte:hover {
    height : fit-content;
}

.outils_utilisés {
    color : grey;
    font-size: 0.8rem;
}

input[name=nom_expediteur] {
    width : 200px;
}

input[name=mail_expediteur] {
    width : 250px;
}

input, textarea {
    background: #747474;
    border-radius: 4px/4px;
    outline: none;
    border: none;
    color: white;
    margin: 2px;
    margin-bottom : 4px;
    font-size: 1rem;
    font-family: "Poppins";
}

input::placeholder, textarea::placeholder {
    color : lightgray;
    font-family: 'Poppins';
}

input:focus, textarea:focus {
    border-bottom: 2px solid white;
    margin-bottom : 2px;
}

button {
    font-size: 1rem;
    font-family: "Poppins";
    border: none;
    border-radius: 4px/4px;
    margin : 2px;
    outline : none;
    background :grey;
    width : fit-content;
    cursor: pointer;
    transition: 0.4s;
}

button:hover {
    box-shadow: 0 0 20px rgb(122, 117, 117);
    background-color: white;
}

button:active, button:focus {
    opacity: 0.8;
    box-shadow: 0 0 20px rgb(204, 197, 197);
    background-color: white;
}

a {
    color : white;
}

.statut_envoi {
    visibility: hidden;
    border-radius: 2px/2px;
    color : white;
    font-size: 0.8rem;
    margin-right : 2px;
    margin-left : 2px;
}

.plyr__video-wrapper {
    border-radius: 4px/4px;
}