body {
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    flex-flow: column nowrap;
    justify-items: baseline;
    align-items: center;
}

main {
    margin-bottom: 50px;
}

#content {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items:center;
    gap:10px;
    width: 100%;
/*
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50%;
    background-image:
    url('../img/logo_nrj.png');
    */
}

form > img {
    position: relative;
    width: 150px;
    transition: 0.5s;
}


form, form > div{
    display: flex;
    flex-flow: column wrap;
    justify-content:baseline;
    align-items:center;
    gap:10px;
}

form {
    border-radius: 10px;
    padding: 5px;
    width: fit-content;
    transition: 0.3s;
    background-color: rgba(131, 255, 131, 0.3);
    box-shadow: 0px 0px 5px rgba(0, 155, 28, 0.94);
}

form:hover {
    border-radius: 15px;
    padding: 10px;
    transition: 0.3s;
    background-color: rgba(98, 255, 0, 0.3);
    box-shadow: 0px 0px 10px rgba(0, 155, 28, 0.94);
}

form:hover img {
    width: 175px;
    background-color: white;
    border-radius: 100px;
    padding:5px
}

form img:hover {
    width: 185px;
    background-color: white;
    border-radius: 100px;
    padding:1px
}

form:hover button, form:hover input {
    transition: 0.3s;
    background-color: rgb(255, 255, 255);
    border-radius: 8px;
}

form:hover a, form:hover a {
    transition: 0.3s;
    color: rgb(12, 30, 0);

}

header {
    z-index: 1;
    display: flex;
    flex-flow: row nowrap;
    background-color: white;
    grid-column: span 2;
    padding: 10px;
    position: sticky;
    top: 0;
    justify-content: space-between;
    box-shadow: 0px 2px 10px rgb(107, 188, 255);

}


footer {
    bottom: 0;
}

button, input {
    border-radius: 5px;
    padding: 5px;
    margin: 2px;
    background-color: white;
    border-color: rgb(127, 255, 148);
}

button:hover, input:hover {
    background-color: rgb(202, 255, 188);

}


.pContact {
    font-size: smaller;
}

h2 {
    font-weight: 100;
}

h1 {
    font-size: 3.3em;
}