/* Body */
body{
    font-family: Arial, Helvetica, sans-serif;
}

/* Header */
header{
    width: 100vw;
    height: 15.7398vh;
    left: 0vh;
    top: 0vh;
    font-family: Arial, Helvetica, sans-serif;

    background: linear-gradient(to top, #353637, #454648);
}

/* Titre 1 */
h1{
    z-index: +1;
    font-size: 5.0367vh;
    position:absolute;
    margin: 0;
    top: 16.7398vh;
    font-family: Arial, Helvetica, sans-serif;
}

/* Paragraphe */
p{
    text-align: center;
    margin: 1vh;
    font-size: 3.7775vh;
}
/* Body */
body{
    width: 88.8985vw;
    height: 100vh;
    background: linear-gradient(to top, #353637, #66656B);
    margin: 0vh;
    color: white;
}

/* hcr2_Logo */
#HCR2_Logo{
    position: absolute;
    width: 12.8074vw;
    height: 14.1658vh;
    left: 2.4134vh;
    top: 1vh;
}

/* flexContainerButtonHeader */
#flexContainerHeader{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

/* Boutton Header */
.Button_Header{
    width: 10.0451vw;
    height: 15.7398vh;
    top: 0vh;
    color: white;
    font-size: 5.0367vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background-image: linear-gradient(to top, #363638, #030104);
}

/* HyperLien */
a{
    text-decoration: none;
}

/* Boutton Contact */
#Button_Accueil{
    border-top: none;
    border-bottom: none;
    border-left: rgb(0,0,0);
    border-right: rgb(0,0,0);
    border-width: 0.5247vh;
    border-left-style: solid;
    border-right-style: solid;

    align-content: start;
}

/* Boutton Calculer */
#Button_Calculer{
    border-top: none;
    border-bottom: none;
    border-left: none;
    border-right: rgb(0,0,0);

    border-width: 0.5247vh;
    border-right-style: solid;
}

/* Accueil_Image */
#icon_contact{
    width: 4.7955vw;
    height: 10.702vh;
    filter: invert();
}

/* Calculatrice_Image */
#icon_calculer{
    width: 5.2234vw;
    height: 10.9129vh;
    filter: invert();

    transform: rotate(-23.69deg);
}

/* Boutton Header (HOVER) */
.Button_Header:hover{
    cursor: pointer;
    background-image: linear-gradient(to top, #ABACB0, #58595B);
}

/* flexContainerContact */
.flexContainerContact{
    display: flex;
    width: 100vw;
    height: 84.2602vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ContactContainer */
.ContactContainer{
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    width: 92.4479vw;
    height: 74.4669vh;
    background: linear-gradient(180deg, #2E3643 0%, #262C38 100%);
    border: 1.0881vh solid #8B8B8B;
}

/* Premier titre d'une zone de saisie */
.textAreaTitle:first-of-type{
    align-self: baseline;
    margin-top: 2.7203vh;
    margin-left: 5.6583vh;
    font-weight: bold;
}

/* Reste des titres */
.textAreaTitle{
    align-self: baseline;
    margin-left: 5.6583vh;
    font-weight: bold;
}

/* zone de saisie */
.textInput{
    width: 86.4062vw;
    height: 5.2699vh;
    
    background: linear-gradient(180deg, #7D8B8C 0%, #565D63 100%);
    border: 0.5441vh solid #000000;
}

/* Boutton envoyer*/
.submitInput{
    position: absolute;
    width: 10.5729vw;
    height: 14.2546vh;
    bottom: 1.741vh;
    right: 5.4407vh;

    background: linear-gradient(180deg, #75BD4E 0%, #4AA738 100%);
    border: 1.0881vh solid #000000;

    font-size: 5vh;
    color: white;
    cursor:pointer
}

/* Boutton envoyer(HOVER)*/
.submitInput:hover{
    background: linear-gradient(180deg, #4AA738 0%, #75BD4E 100%);
    border: 1.0881vh solid #000000;
}

/* Boutton envoyer(ACTIVE)*/
.submitInput:active{
    background: linear-gradient(180deg, #75bd4e 0%, #4aa738 100%);
    border: 1.0881vh solid #000000;
}

/* Dernière zone de saisie*/
#lastTextInput{
    width: 72.0469vw;
    height: 25.2699vh;
    align-self: baseline;
    background: linear-gradient(180deg, #7D8B8C 0%, #565D63 100%);
    border: 0.5441vh solid #000000;
}

/* Boutton d'information (qui ouvre la pop-up d'information sur le développeur originale de ce siteweb) */
.infoNico{
    position: absolute;
    width: 10.5729vw;
    height: 10.2546vh;
    bottom: 18.741vh;
    right: 5.4407vh;

    background: linear-gradient(180deg, #7D8B8C 0%, #565D63 100%);
    border: 1.0881vh solid #000000;

    font-size: 3.5vh;
    color: white;
    cursor:pointer
}

/* Pop-up d'information */
#myForm{
    display: none;
}

/* Style de la pop-up */
.form-popup{
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    width: 50vw;
    height: 50vh;
    background: linear-gradient(180deg, #2E3643 0%, #262C38 100%);
    border: 1.0881vh solid #8B8B8B;
}

/* Boutton pour fermer la pop-up */
.closeInfoNico{
    position: absolute;
    right: 1.5vw;
    top: 1.5vh;

    width: 3vw;
    height: 5vh;

    background: linear-gradient(180deg, #ff0000 0%, #690000 100%);
    border: 0.5vh solid #000000;
    cursor: pointer;
}