@import url(fa-all.css);
@import url("https://fonts.googleapis.com/css?family=Varela+Round");


* {
    box-sizing: border-box;
}
html {
    background-color: #dab1da;
    color: #553355;
    font-family: "Varela Round", "Arial";
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    margin: 0;
    padding: 0;
    line-height: 1em;
}

footer {
    position: absolute;
    bottom: 0;
    padding-bottom: 1em;
}

/* formats */
    h1 {
        font-size: 2.5em;
        line-height: 1em;
        margin: 0 0 0 0;
    }
    h2 {
        font-size: 2.25em;
    }
    h3 {
        font-size: 2em;
    }
    h4 {
        font-size: 1.75em;
    }
    h5 {
        font-size: 1.5em
    }
    h6 {
        font-size: 1.25em;
    }
    p {
        font-size: 1em;
        margin: 0 0 0 0;
    }
    .title {
        font-size: 2.5em;
    }

    a {
        color: #521152;
    }
    i {
        font-size: 2.3em;
        border-style: solid;
        border-radius: 0.4em;
        padding: 0.2em;
        margin-left: 0.2em;
        margin-right: 0.2em;
    }
    .fa-twitter {
        color: #1DA1F2;
        transition: transform .2s;
        background: rgba(0,0,0,0.05);
        min-width: 60px;
        min-height: 60px;
    }
    .fa-instagram {
        color: #833AB4;
        transition: transform .2s;
        background: rgba(0,0,0,0.05);
        min-width: 60px;
        min-height: 60px;
    }
    .fa-paypal {
        color: #00457C;
        transition: transform .2s;
        background: rgba(0,0,0,0.05);
        min-width: 60px;
        min-height: 60px;
    }
    .made {
        background-color: #ffddff;
        padding: 0.2em;
        border-radius: 0.4em;
        line-height: 1em;
    }
    section {
        /* border-style: solid;
        border-radius: 0.4em; */
        padding: 0.2em;
        margin: 1em;
    }
    
    .zoom:hover {
        transform: scale(1.3);
        background: rgba(255,255,255,0.2);
    }