/* center div vert and horizontal */

/* load font Eina.tff as Eina */
@font-face {
    font-family: Eina01-Bold;
    src: url('Eina01-Bold.ttf');
}

@font-face {
    font-family: Eina01-SemiBold;
    src: url('Eina01-SemiBold.ttf');
}

@font-face {
    font-family: Eina01-Regular;
    src: url('Eina01-Regular.ttf');
}

.container {
    width: 100%;
    height: 100%;
}

.body {
    overflow: hidden;
}

* {
    margin: 0
}

.content {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    overflow: auto;
    padding: 0 10px 0px 10px;

    top: 50%;
    transform: translateY(-50%) scale(0.85);
    max-width: 800px;
}

h1 {
    font-family: 'Eina01-Bold';
    font-style: normal;
    font-weight: 400;
    font-size: 69px;
    line-height: 94px;
    /* identical to box height */

    text-align: center;

    color: #000000;
}

p {
    font-family: 'Eina01-Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 34px;
    line-height: 47px;
    text-align: center;
    margin-bottom: 40px;
}

.highlight {
    font-family: 'Eina01-SemiBold';
    font-style: normal;
    font-weight: 400;
    font-size: 34px;
    line-height: 47px;
    text-align: center;

    background: linear-gradient(105.04deg, #122B80 9.68%, rgba(120, 206, 233, 0.75) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.social-icon {
    margin: 10px;
    color: #B7C4D8;
    transition: 0.3s ease-in-out;
}

.social-icon:hover {
    margin: 10px;

    color: #308DE2;
    cursor: pointer;
}

.logo-img {
    width: 180px;
    height: auto;

    background: url(logo.png);
}

.background {
    position: absolute;
    left: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    z-index: -1;

    background: url(background.png);
    background-repeat: no-repeat;
    background-size: cover;

    transform: translateX(-6px);

    background-color: #F3F4F6;
}