* {
    box-sizing: border-box;
}
@font-face {
    font-family: 'ArboriaMedium';
    src: url(fonts/Arboria-Medium.ttf);
}
@font-face {
    font-family: 'ArboriaLight';
    src: url(fonts/Arboria-Light.ttf);
}
html, body {
    margin: 0;
    height: 100%;
    background-color: #440444;
}
body {
    font-family: 'ArboriaLight', sans-serif;
    background: url('images/background.svg');
    background-position: right bottom;
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
}

h1 {
    font-size: 60px;
    line-height: 1.2em;
    font-family: 'ArboriaMedium', sans-serif;
}

p, ul, a {
    font-size: 22px;
    line-height: 1.35em;
    font-weight: 300;
}
strong {
    font-family: 'ArboriaMedium', sans-serif;
}

/* HEADER */
header {
    padding: 30px 30px 0px;
}
header img {
    width: 220px;
}

/* MAIN */
.container {
    max-width: 825px;
    margin: auto;
    padding: 0 35px;
}
.container h1 {
    margin-bottom: 60px;
}
.container ul {
    margin: 25px 0 50px;
}
.container ul li {
    margin-bottom: 0;
    position: relative;
    display: flex;
    align-items: center;
}
.container ul li a {
    display: inline-block;
}
.container ul li::marker {
    display: none;
    color: transparent;
}
.container ul li::before {
    content: '';
    width: 14px;
    height: 14px;
    background-color: #53A284;
    border-radius: 50px;
    position: absolute;
    left: -40px;
}
.container ul li p {
    margin: 0;
}
.container ul li img {
    height: 45px;
    border-radius: 10px;
    padding: 2px 10px;
    background-color: white;
    border: 2px solid black;
    margin: 5px 0 0 20px;
}

footer {
    height: 120px;
}

@media only screen and (max-width: 1280px) {
    h1 {
        font-size: 54px;
        text-align: center;
    }
}

@media only screen and (max-width: 992px) {
    header, footer {
        text-align: center;
    }
    body {
        background-position: left bottom;
        background-size: cover;
        min-height: 100%;
        height: fit-content;
    }
    h1 {
        font-size: 48px;
        text-align: center;
    }
    
    p, ul, a {
        font-size: 18px;
    }
}

@media only screen and (max-width: 768px) {
    h1 {
        font-size: 28px;
    }
    
    p, ul, a {
        font-size: 16px;
    }
    header {
        padding: 10px;
    }
    header img {
        max-width: 200px;
    }
    footer {
        padding: 20px;
    }
    footer img {
        height: 28px;
        margin: 0 auto;
    }
    footer img:last-child {
        margin-left: 10px;
    }

    .container h1 {
        margin-bottom: 30px;
        text-align: center;
    }
    .container ul {
        margin: 30px 0;
    }
    .container ul li {
        margin-bottom: 10px;
        display: block;
    }
    .container ul li::before {
        width: 10px;
        height: 10px;
        top: 8px;
    }
    .container ul li img {
        height: 40px;
        margin: 5px 0 0px -40px;
    }
    .container ul li a {
        display: block;
        text-align: center;
    }
    footer {
        height: 60px;
    }
}
