#page {
    text-align: center;
    font-size: 16px; 
    }
    #page h1 {
    margin-bottom: 4rem;
    font-family: 'Lemonada', cursive;
    text-transform: uppercase;
    font-weight: normal;
    color: #fff;
    font-size: 2rem;
    }
    .wrap-custom-file {
    position: relative;
    height: 195px;
    text-align: center;
    }
    .wrap-custom-file input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 2px;
    overflow: hidden;
    opacity: 0;
    }
    .wrap-custom-file label {
    z-index: 1;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
    padding: 0 0.5rem;
    cursor: pointer;
    background-color: #fff;
    border-radius: 4px;
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    }
    .wrap-custom-file label span {
    display: block;
    margin: 0;
    font-size: 1.5rem;
    color: #d9ebfa;
    } 
   
    .wrap-custom-file label .fa {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    -webkit-transform: translatex(-50%);
    transform: translatex(-50%);
    font-size: 1.5rem;
    color: #d9ebfa;
    -webkit-transition: color 0.4s;
    transition: color 0.4s;
    }
    .wrap-custom-file label:hover span, .wrap-custom-file label:hover .fa {
    color: #333;
    }
    .wrap-custom-file label.file-ok {
    background-size: cover;
    background-position: center;
    }
    .wrap-custom-file label.file-ok span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0.3rem;
    font-size: 1.1rem;
    color: #000;
    background-color: rgba(255, 255, 255, 0.7);
    }
    .wrap-custom-file label.file-ok .fa {
    display: none;

    }
    @media(max-width:575px)
    {
        .wrap-custom-file label span {
            font-size: 18px;
        }
    }