@font-face {
    font-family: Roboto;
    src: url(fonts/Roboto-Regular.ttf);
}

body {
    margin: 0;
    color: #ccc;
    font-family: 'Open Sans', sans-serif;
    background: rgb(25, 7, 0);
    background: linear-gradient(90deg, rgba(25, 7, 0, 1) 0%, rgba(25, 7, 0, 1) 20%, rgba(77, 22, 1, 1) 50%, rgba(25, 7, 0, 1) 80%, rgba(25, 7, 0, 1) 100%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto', sans-serif;
}

.content {
    width: 100%;
    background-color: #262626;
    padding-top: 20px;
    padding-bottom: 50px;
    border-radius: 0 0 20px 20px;
}

h1 {
    font-size: 1.6em;
    text-align: center;
    margin-bottom: 1.6em;
}

h1,
h2,
h3,
h4,
p {
    margin-left: 30px;
    margin-right: 30px;
    text-shadow: 0 0 5px #000a;
}

@media (min-width: 860px) {

    h1,
    h2,
    h3,
    p {
        margin-left: 30px;
        margin-right: 30px;
    }
}

p {
    margin-bottom: 1.5em;
}

.banner-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

img.banner {
    width: 100%;
    margin: 0 auto;
}

@media (min-width: 860px) {
    .content {
        max-width: 860px;
        margin: 0 auto 50px auto;
    }
}

.yt-row {
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
}

.yt-embed {
    width: 380px;
    margin: 0 auto
}

.yt-embed a {
    position: relative;
    float: left;
}

.yt-embed a::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: inset 0px 0px 50px #000;
}

.yt-embed a:hover::before {
    box-shadow: inset 0px 0px 30px #000;
}

@media (min-width: 880px) {
    .yt-embed:first-child:not(:last-child) {
        float: left;
        margin: 0 30px 0 30px;
    }

    .yt-embed:last-child:not(:first-child) {
        float: left;
        margin: 0 30px 0 0;
    }
}

hr {
    border-color: rgba(25, 7, 0, 1);
}

hr.bean {
    border: none;
    margin: 80px 0;
}

.coffee-bean {
    position: absolute;
    width: 30%;
    bottom: 0;
    left: 10px;
    animation: wave 2s cubic-bezier(0.215, 0.610, 0.355, 1) both;
    animation-iteration-count: infinite;
}

.coffee-bean.right {
    left: unset;
    right: 10px;
    margin-bottom: -155px;
}

@keyframes wave {

    40%,
    60% {
        transform: rotate(0deg);
    }

    45%,
    55% {
        transform: rotate(5deg);
    }

    50% {
        transform: rotate(-5deg)
    }
}

.coffee-bean>img {
    width: 100%;
}

.banner-links {
    position: absolute;
    top: 0;
    bottom: 55px;
    border-radius: 4%;
    transition: background-color 0.3s ease-in-out;
}

.banner-links:hover {
    background-color: #aaa2;
}

.banner-links:nth-of-type(1) {
    left: 60px;
    right: 400px;
}

.banner-links:nth-of-type(2) {
    left: 235px;
    right: 230px;
}

.banner-links:nth-of-type(3) {
    left: 415px;
    right: 50px;
}

.banner-links>a {
    display: block;
    width: 100%;
    height: 100%;
}

a {
    color: white;
}

/* .fade-in {
    opacity: 0;
    animation: fadein 3s forwards;
} */

/* .fade-in#banner {
    animation-delay: 0;
}

.fade-in#showcase {
    animation-delay: 0.5s;
}

.fade-in#testimonials {
    animation-delay: 1s;
}

.fade-in#showcaseGuest {
    animation-delay: 1.5s;
}

.fade-in#story {
    animation-delay: 2s;
}

.fade-in#buyCoffee {
    animation-delay: 2.5s;
}

.fade-in#links {
    animation-delay: 3s;
}

.fade-in#impressum {
    animation-delay: 3.5s;
} */

.testimonial-box {
    min-height: 150px;
    margin-left: 50px;
    margin-right: 50px;
    background-color: #999;
    color: #262626;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 0 10px #111;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.support-links {
    margin: 40px auto 0px auto;
    width: 185px;
    justify-content: center;
}

.support-links>div {
    display: block;
    margin: 14px auto;
}

@media screen and (min-width: 500px) {
    .support-links {
        width: 500px;
        display: flex;
        height: 50px;
        align-items: center;

    }

    .support-links>div {
        display: inline-block;
        margin: auto;
    }
}

a.btn-support {
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    justify-content: center;
    padding: 7px 14px 7px 14px;
    display: block;
    margin: 0 20px;
    border-radius: 5px;
    transition: background-color 0.2s ease-in-out;
    box-shadow: 5px 5px 10px #0005;
}

a.btn-support:hover {
    box-shadow: 3px 3px 5px #000a;
}

a.btn-support.patreon {
    background-color: rgb(255, 66, 77);
    color: rgb(5, 45, 73);
}

a.btn-support.patreon:hover {
    background-color: #da3038;
}

a.btn-support.kofi {
    background-color: #29abe0;
    color: #fff;
}

a.btn-support.kofi:hover {
    background-color: #2997c4;
}

a.btn-support.merch {
    background-color: #d43a1e;
    color: #fff;
}

a.btn-support.merch:hover {
    background-color: #961d07;
}

div.merch-preview {
    width: 90%;
    margin: 0 auto;
    border-radius: 20px;
}

div.merch-preview img {
    width: 25%;
    transition: all 0.3s ease-in-out;
    border-radius: 0;
    box-shadow: 0 0 0 #0000;
    z-index: 1;
}

div.merch-preview a:first-child img {
    border-radius: 20px 0 0 20px;
}

div.merch-preview a:last-child img {
    border-radius: 0 20px 20px 0;
}

div.merch-preview a:hover img {
    transform: scale(1.1);
    z-index: 20;
    box-shadow: 0 0 20px #000a;
    border-radius: 20px;
}
