body {
    background-color: #eecbaf;
}

p.body-text {
    color: #333;
}

h4.tea-purple {
    color: #d0734a;
}

#main {
    text-align: center;
}

#main img {
    margin: auto;
    text-align: center;
}

.button {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    padding: 12px 24px;
    border: 1px solid #b34939;
    border-radius: 8px;
    background: #b34939;
    background: -webkit-gradient(linear, left top, left bottom, from(#d45542), to(#b34939));
    background: -moz-linear-gradient(top, #d45542, #b34939);
    background: linear-gradient(to bottom, #d45542, #b34939);
    text-shadow: #ffffc7 1px 1px 1px;
    font: normal normal bold 20px verdana;
    color: #fff;
    text-decoration: none;
}
.button:hover,
.button:focus {
    border: 1px solid #d0734a;
    background: #d0734a;
    background: -webkit-gradient(linear, left top, left bottom, from(#d8835e), to(#d0734a));
    background: -moz-linear-gradient(top, #d8835e, #d0734a);
    background: linear-gradient(to bottom, #d8835e, #d0734a);
    color: #111111;
    text-decoration: none;
}
.button:active {
    background: #d0734a;
    background: -webkit-gradient(linear, left top, left bottom, from(#d8835e), to(#d0734a));
    background: -moz-linear-gradient(top, #d8835e, #d0734a);
    background: linear-gradient(to bottom, #d8835e, #d0734a);
}

a.btn-tea {
    color: #b34939 !important;
    background: transparent;
    background-image: none;
    border-color: #b34939 !important;
}

a.btn-tea:hover {
    color: #ffffff !important;
    background-color: #d0734a;
    border-color: #d0734a;
}

.btn-tea {
    color: #ffffff !important;
    background: #b34939;
    background-image: none;
    border-color: #b34939 !important;
}

a.btn-card {
    color: #fff;
    background-color: #8D3C94;
    border-color: #8D3C94
}

a.btn-card:hover {
    color: #8D3C94;
    background: transparent;
    border-color: #8D3C94;
}

.main-tea-img {
    transform: rotate(-15deg) scale(.75, .75);
    -webkit-transform: rotate(-15deg) scale (.75, .75);
    -webkit-box-shadow: 10px 10px 30px 15px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 10px 10px 30px 15px rgba(0, 0, 0, 0.4);
    box-shadow: 10px 10px 30px 15px rgba(0, 0, 0, 0.4);
    transition: .3s ease-in-out;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out
}

img:hover {
    transform: rotate(15deg);
    -webkit-transform: rotate(15deg);
    -webkit-transition: .3s ease-in-out;
    -moz-transform: rotate(15deg);
    -moz-transition: .3s ease-in-out
    transition: .3s ease-in-out;
}

.main-header {
    color: #b34939;
    font-weight: 400;
}

.lead {
    color: #d0734a;
    font-weight: bold;
    font-size: 1.3em;
}

.btn-purchase {
    color: #fff;
    background-color: #b34939;
}

.btn-purchase:hover {
    color: #d0734a;
    background-color: #fff;
}


div.scroll-arrow {
    width: 100%;
    height: 10vh;
    background: transparent;
  }
  div.scroll-arrow::before{
    content: '╲╱';
    color: #fff;
    position: absolute;
    opacity: 0.7;
    text-shadow: 0 0 6px rgba(0,0,0,0.5);
    font-size: 20px;
    width: 60px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 10px;
    bottom: 20px;
    left: 50%;
    margin-left: -30px;
    animation: bounce 1s ease infinite;
  }
  
  @keyframes bounce {
    50% {
      transform: translateY(-50%);
    }
    100% {
      transform: translateY(0);
    }
  }