@font-face {
    font-family: 'Arimo';
    font-style: normal;
    font-weight: 400;
    src: url(../font/Arimo-Regular.ttf) format('truetype');
}

@font-face {
    font-family: 'Arimo';
    font-style: normal;
    font-weight: 700;
    src: url(../font/Arimo-Bold.ttf) format('truetype');
}

@font-face {
    font-family: 'Arimo';
    font-style: italic;
    font-weight: 400;
    src: url(../font/Arimo-Italic.ttf) format('truetype');
}

@font-face {
    font-family: 'Arimo';
    font-style: italic;
    font-weight: 700;
    src: url(../font/Arimo-BoldItalic.ttf) format('truetype');
}

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    font-family: 'Arimo', sans-serif;
    color: white;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background: #8fd2c9;
    background: radial-gradient(ellipse at center, #8fd2c9 0%, #77bec4 45%, #65889b 85%, #6f769b 100%);
    background: url(../img/bg.jpg) no-repeat 50% 50%;
    background-size: 100%;
    background-size: cover;    
}

.content {
    background-color: rgba(24, 25, 27, 0.4);
    padding: 60px;
}

.content img {
    width: 200px;
}

h2 {
    margin: 25px 0;
    font-size: 40px;
    line-height: 40px;
}

.separator {
    border-bottom: 2px solid white;
    margin: 25px 0;
}

.text {
    font-size: 30px;
    line-height: 35px;
    margin: 25px 0;
}

@media (max-width: 800px) {
    .content {
        padding: 40px 20px;

    }

    .content img {
        width: 150px;
    }

    h2 {
        font-size: 30px;
        line-height: 30px;
    }

    .separator {
        margin: 25px 0;
    }

    .text {
        font-size: 20px;
        line-height: 25px;
    }
}
