body {
    font-family: 'Roboto';
    font-size: 14px;
    font-weight: 500;
    --title-scale: 1;
}

.font-title {
    font-family: 'Lato';
}

a {
    text-decoration: none;
    font-weight: 600;
}

a:not(.btn):hover {
    text-decoration: underline
}

.center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    position: relative;
    z-index: 1;
}

.overlay:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#482cbf+0,6ac6f0+100 */
    background: rgba(255,114,22,1);
    /* Old browsers */
    /* FF3.6-15 */
    background: -webkit-linear-gradient(45deg, rgba(255,91,34,1) 0%, rgba(255,114,22,1) 50%, #ff9700 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: -o-linear-gradient(45deg, rgba(255,91,34,1) 0%, rgba(255,114,22,1) 50%, #ff9700 100%);
    background: linear-gradient(45deg, rgba(255,91,34,1) 0%, rgba(255,114,22,1) 50%, #ff9700 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#E64A19', endColorstr='#F57C00', GradientType=1);
    opacity: 0.92;
    /* IE6-9 fallback on horizontal gradient */
    z-index: -2;
}

.download {
    position: relative;
}

.download h2 {
    font-family: 'Roboto', 'sans-serif';
    font-weight: 600;
    font-size: 40px;
    margin-top: 0;
    margin-bottom: 5%;
    color: white;
}

.download p {
    color: white;
    margin-bottom: 6%;
    font-size: 120%;
}

.download .badges .badge-link {
    display: block;
    margin-bottom: 25px;
    margin-right: 30px;
    border-radius: 1em;
    border: 1px solid white;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.2);
    transition: 0.5s;
}

.download .badges .badge-link:hover {
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.4);
}

.download .badges .badge-link:last-child {
    margin-bottom: 0;
}

.download .badges .badge-link img {
    padding: 15px;
}

@media (min-width: 768px) {
    .download .badges .badge-link {
        display: inline-block;
        margin-bottom: 0;
    }
}

.download .badges #mac-os {
    padding-right: 20px;
}

@media (min-width: 768px) {
    .download h2 {
        font-size: 50px;
    }
}

.section--footer {
    background: linear-gradient(90deg, rgba(54,54,54,1) 0%, rgba(33,33,33,1) 27%, rgba(0,0,0,1) 100%);
}

.footer-section {
    margin-top: 1em;
    text-align: center;
}

.footer-section p, .footer-section a {
    font-size: 15px;
    line-height: 0.5;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.3);
    transition: 0.5s;
}

.footer-section a:hover {
    text-decoration: none;
    color: #F4511E;
    transition: 0.5s;
}

.contact-email a {
    font-family: "Roboto";
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #ff9700;
}

.list-inline > li {
    display: inline-block;
    /* You can also add some margins here to make it look prettier */
    zoom:1;
    *display:inline;
    /* this fix is needed for IE7- */
    margin-left: 1em;
    margin-right: 1em;
}

.list-inline > li > a:hover {
    color: #ff9700;
}

.authorLink a {
    color: #ff9700;
    font-size: 15px;
}

.authorLink a:hover {
    color: #F4511E;
}

.heart {
    animation: heathing 1s ease infinite;
}

.levitate {
    animation: levitate 1s alternate ease-in-out infinite;
}

.levitate-delay {
    animation-delay: 0.4s;
}

@keyframes levitate {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(0, 10px);
    }
}

@keyframes heathing {
    0% {
        transform: scale(0.75);
    }
    20% {
        transform: scale(1);
    }
    40% {
        transform: scale(0.75);
    }
    60% {
        transform: scale(1);
    }
    80% {
        transform: scale(0.75);
    }
    100% {
        transform: scale(0.75);
    }
}
