*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

body {
    width: 100%;
    height: 100vh;
    background: #F9B1FF;
    background-image: url(../images/grain.png);
    background-attachment: fixed;
    font-family: "Poppins", sans-serif;
}

.container {
    height: 100vh;
}

.site-logo {
    display: block;
    margin: 0 auto;
    padding: 100px 0;
}

.title-stroke {
    color: transparent;
    -webkit-text-stroke: 1px #fff;
}

@keyframes loopText {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }

}

.loop-container {
    display: flex;
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
}

.loop-text {
    animation: loopText 5s infinite linear;
    font-weight: 900;
    font-style: normal;
    font-size: 80px;
    color: #fff;
    text-transform: uppercase;
    padding: 0 20px;
}

.coffee {
    padding-top: 160px;
    text-align: center;
}

.coffee p,
.coffee a {
    color: #fff;
    font-weight: 200;
    font-size: 22px;
}

/*
.coffee img {
    padding: 15px;
}

@keyframes coffeeMugAnimation {
    50% {
        transform: rotate(5deg);
    }
}

.coffee-cup:hover {
    transform: rotate(-5deg);
    animation: coffeeMugAnimation 1s ease-in-out infinite;
}
*/
@media (max-width: 1100px) {
    .site-logo {
        width: 60%;
        padding: 30px 0 60px 0;
    }

    .coffee {
        padding-top: 90px;
    }

    .coffee p,
    .coffee a {
        font-size: 18px;
        font-weight: 300;
    }

    .coffee a {
        text-decoration: underline;
    }

    .coffee img {
        padding: 10px;
    }
}

@media (min-width: 1800px) {
    .loop-text {
        font-size: 140px;
    }

    .coffee {
        padding-top: 200px;
    }
}
