.CajaDatosParticipante{
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
}

.AreaNombreParticipante{
    width: 70%;
    
    display: grid;
    grid-template-columns: repeat(1, 100%);

    padding-top: 150px;
}

.LabelNombre, .AreaTextNombre, .BotonGenerar{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

    font-family: 'Montserrat';
    font-size: 20px;
}

.LabelNombre{
    padding-top: 20px;
    padding-bottom: 20px;

    color: rgb(243, 151, 66);
    font-weight: bold;
    text-align: justify;
}

.AreaTextNombre{
    padding: 20px;
}

.AreaTextNombre > textarea{
    resize: none;
    width: 400px;
    height: 35px;
    text-align: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 15px 15px;
}

.BotonGenerar > button{
    text-decoration: none;
    padding: 10px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 15px 15px;
    color: white;
    font-weight: bold;
    font-size: 17px;
    background-color: rgb(243, 151, 66);
    filter: drop-shadow(5px 5px 5px rgb(51, 51, 51));
    transition: all 0.4s ease;
}

.DossierBox > button:hover{
    background-color: rgb(45, 146, 25);
}