:root{
    --pink: #E42798;
    --lime: #49CE2F;
}

@font-face {
    font-family: 'Pristina';
    font-style: normal;
    font-weight: normal;
    src: local('Pristina'), url('PRISTINA.woff') format('woff');
}

body{
    background-color: var(--pink);
    color: var(--lime);
}

h1, h2, h3{
    font-family:'Pristina';
    font-weight:normal;
}

h1{
    font-size: 100px;
    margin: 0;
    text-align: center;
}

h2{
    font-size: 60px;
    text-align: center;
    margin: 0;
}

.container{
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}