@font-face {
    font-family: 'ArboriaBold';
    src: url('./fonts/Arboria-Bold.ttf');
}

@font-face {
    font-family: 'ArboriaLight';
    src: url('./fonts/Arboria-Light.ttf');
}

body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family:'ArboriaLight', Arial, sans-serif;
    font-size: 18px;
    line-height:30px;
    background-color: #fff;
    background-image: url("assets/background.jpg");
    background-repeat: no-repeat;
    background-size:100%;
    background-position-y:center;
    position: relative;
}

.logo {
    width:100%;
}

.content {
    text-align: left;
    width: 40%;
    max-width: 615px;
    display: flex;
    align-items: center;
    height: 100%;
    margin-top: -132px;
}

h1 {
    font-family: 'ArboriaBold', Arial, sans-serif;
    font-size:48px;
    line-height: 60px;
}

ul {
    padding-left: 15px;
    margin: 30px 0
}

li {
    margin-bottom: 20px;
}

img {
    width: 200px;
    padding:30px 0 0 30px;
    mix-blend-mode: multiply;
}

a {
    color: inherit;
}

strong{
    font-family: 'ArboriaBold', Arial, sans-serif;
}

@media (min-width: 880px) and (max-width: 1120px) {
    .content {
        width: 60%;
    }

    .logo {
        width: 100%;
        margin-left: 30px;
    }

    img {
        width: 180px;
        padding:30px 0 0 0;
        mix-blend-mode: multiply;
    }
}

@media (max-width: 880px) {
    .content {
        width: 80%;
        margin-top:0px;
    }

    .logo {

        margin-left: 30px;
        width: 100%;
    }

    img {
        width:120px;
    }

    h1 {
    font-family: 'ArboriaBold', Arial, sans-serif;
    font-size:36px;
    line-height: 44px;
}
}