/* --========== FONT ==========-- */
@font-face {
    font-family: "CuprumRegular";
    src: url("../fonts/CuprumRegular/CuprumRegular.eot");
    src: url("../fonts/CuprumRegular/CuprumRegular.eot?#iefix")format("embedded-opentype"),
    url("../fonts/CuprumRegular/CuprumRegular.woff") format("woff"),
    url("../fonts/CuprumRegular/CuprumRegular.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}
/*
font-family: "CuprumRegular";
*/
/* --========== END FONT ==========-- */

/* --========== GENEARAL ==========-- */
body{
    width: 100%;
    height: 100vh;
    font-size: 14px;

    background: #7918f2;
    background: -webkit-linear-gradient(-45deg, #ac32e4, #7918f2, #4801ff);
    background: -o-linear-gradient(-45deg, #ac32e4, #7918f2, #4801ff);
    background: -moz-linear-gradient(-45deg, #ac32e4, #7918f2, #4801ff);
    background: linear-gradient(-45deg, #ac32e4, #7918f2, #4801ff);
}
/*  */
.container{
    display: flex;
    justify-content: center;
    max-width: 50%;
    height: 100vh;   
    margin: 0 auto;   
}
.header-title{
    display: flex;
    /* align-items: center; */
    font-family: 'CuprumRegular', sans-serif; 
    font-size: 1.7em;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 3px;
    color: honeydew;         
}

/* --========== MEDIA ==========-- */

@media (max-width: 1400px) {
    .container{
        max-width: 80%;
    }
}

@media (max-width: 900px) {
    body{
        font-size: 14px;
        line-height: 5em;
    }
}
 