@font-face {
    font-family: "Bilbo Swash Caps";
    src: url("/fonts/BilboSwashCaps-Regular.ttf");
}

@font-face {
    font-family: "Libre Baskerville";
    src: url("/fonts/LibreBaskerville-Regular.ttf");
}

@font-face {
    font-family: "Libre Baskerville Bold";
    src: url("/fonts/LibreBaskerville-Bold.ttf");
}

body {
    font-family: "Libre Baskerville";
    font-size: 17px;
    margin: 0;
    padding: 0;
}

img{
    display: block;
    width: 100%;
}

h1 {
    font-family: "Bilbo Swash Caps";
    color: #A272AF;
    font-size: 3rem;
    text-align: center;
    margin: 2rem auto 0;
    line-height: 1;
}

a {
    color: #3a669f;
}

p {
    font-family: "Libre Baskerville";
}

p strong {
    font-family: "Libre Baskerville Bold";
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

ul {
    padding: 0;
    list-style: none;
}

ul li {
    margin-bottom: 1rem;
    padding-left: 2em;
    position: relative;
}

ul li:before {
    position: absolute;
    left: 0;
    width: 1.3rem
}

#li-tel::before {
    content: url('/imgs/tel.svg');
}

#li-email::before {
    content: url('/imgs/email.svg');
}

@media screen and (min-width:981px){
    h1 {
        font-size: 4rem;
        margin: 4rem auto 3rem;
    }

    p, li{
        font-size: 1.3rem;
    }

    ul li::before {
        width:1.3em;
    }
}