﻿:root {
    --my-color-first: #393F46;
    --my-color-second: #677380;
    --my-color-three: #BACEE6;
}

body {
    margin: 0;
    Font-Family: Arial;
    background: #393F46;
}

.primary-color {
    background-color: #393F46;
}
/*///////////////////////////// CONTAINER ////////////////////////////////*/
.block {
    background-color: #ffffff;
    border-radius: 5px;
    border: 5px;
    border-color: black;
    padding: 45px;
    text-align: center;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
    margin: 0 auto;
    width: 400px;
    padding: 40px 40px;
    position: absolute;
    left: 0;
    right: 0;
    top: 45%;
    transform: translatey(-50%);
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #393F46;
    color: white;
    text-align: center;
}

#div_deco {
    display: inline;
    position: absolute;
    width: 300px;
    top: 0.1%;
    right: 1%;
    border-radius: 8px;
    text-align: center;
}


/*///////////////////////////////// HEIGHT / WIDTH ////////////////////////////*/

.h-250{
    height:250px;
}
/*///////////////////////////////// ELEMENT //////////////////////////////////*/
hr {
    border-top: 1px solid #377399;
}

/*//////////////////////////////////// MEDIA /////////////////////////////////*/
@media all and (max-width: 950px) {

    #div_deco {
        text-align: right;
    }

}

@media all and (max-width: 700px) {

    .block {
        width: 100%;
        border-radius: 0px;
        box-shadow: none;
        margin: auto;
        padding: 30px 30px;
    }
}

/*/////////////////////////////////// DISPLAY /////////////////////////////////////*/
.display-none{
    display:none;
}