body.content {
    font-family: "Arial";
    font-size: 2em;
    text-align: center;
}

#footer {
    position: relative;
    bottom: 0;
    width: 95%;
    margin: 0;
    padding: 0;
}

div.section {
    min-width: 100%;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid black;
}

a {
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    color: black;
}

a:visited {
    text-decoration: none;
    color: black;
}

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

ul.social > li {
    display: inline-block;
}

.text-center {
    text-align: center;
}

.green {
    color: green;
}

.greenyellow {
    color: #cfdc00;
}

.red {
    color: red;
}

.cmyk {
    color: #007bb6;
}

.head-text {
    display: none !important;
}

.hide {
    display: none;
}

.rollAnimate {
    -webkit-animation: rollImage 3s infinite;
    -moz-animation: rollImage 3s infinite;
    animation: rollImage 3s infinite;
}

/* animation code */
@keyframes rollImage {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-15deg);
    }
    50% {
        transform: rotate(0deg);
    }
    75% {
        transform: rotate(15deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.bounce {
    -moz-animation: bounce 2s infinite;
    -webkit-animation: bounce 2s infinite;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}


/*only phone portrait*/
@media (max-width: 500px) {
    body {
        text-align: center;
        font-size: 1.4em;
    }

    #footer {
        position: relative;
    }

    ul.list span {
        display: block;
    }

    ul.list > li {
        padding-bottom: 0.5em;
    }
}

/*only phone landscape*/
@media (max-height: 500px) and (orientation: landscape) {
    #footer {
        all: unset;
    }

    div.section {
        min-height: 100vh;
    }

    .head-text {
        display: block !important;
        /*position: absolute;*/
        /*bottom: 0;*/
        /*width: 100vw;*/
    }

    ul.list > li {
        padding-bottom: 0.5em;
    }
}


@media print {
    body {
        margin: 0;
        color: #000;
        background-color: #fff;
        /*font-size: 12px;*/
    }

    .print-hide {
        display: none;
    }

    .print-show {
        display: unset !important;
    }

    .rollAnimate {
        all: unset;
    }

    h2, ul.social {
        text-align: left !important;
    }

    div.section {
        border: unset;
    }

    ul.social a {
        display: block;
    }

    ul a:after {
        content: attr(href);
    }

    h2:after {
        content:':';
    }
}