@import url('https://fonts.googleapis.com/css2?family=Annie+Use+Your+Telescope&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
}

body {
    overflow: hidden;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    user-select: none;
    background: rgb(245, 234, 173);
    
}

.line {
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-image: linear-gradient(
            rgba(213, 131, 24, 0.7),
            rgba(0, 0, 0, 0.9)
        ),
        url('../assets/img/hero.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.first,
.second {
    text-align: center;
    position: relative;
    z-index: 999;
}

.first a{
    text-decoration: none;
    color: rgb(245, 234, 173);
}

h2{
    font-family: 'Annie Use Your Telescope', cursive;
}

.line1 {
    z-index: 15;
    opacity: 0.5;
}

.line2 {
    z-index: 10;
    opacity: 0.7;
}

.line3 {
    z-index: 5;
}

.wave {
    overflow: hidden;
    position: absolute;
    left: 0;
    width: 200%;
    height: 100%;
    background-repeat: repeat no-repeat;
    background-position: 0 bottom;
    transform-origin: center bottom;
}

.wave1 {
    background-size: 50% 80px;
}

.wave2 {
    background-size: 50% 100px;
    animation: animate 12s linear infinite;
}

.wave3 {
    background-size: 50% 80px;
    animation: animate 18s linear infinite;
}

div.braintree-button,
div.gmc-button {
    display: inline-block;
}

.gmc-button,
.braintree-button {
    margin-top: 10px;
    width: 150px;
    height: 35px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 500;
    color: #000;
    background-color: rgb(245, 234, 173);
    border: none;
    border-radius: 45px;
    transition: all 0.3s ease 0s;
    cursor: pointer;
    outline: none;
}

.gmc-button:hover,
.braintree-button:hover {
    background-color: rgb(170, 31, 26);
    box-shadow: 0px 15px 20px rgba(170, 31, 26, 0.2);
    color: rgb(245, 234, 173);
    transform: translateY(-7px);
}

.gmc-button:focus,
.braintree-button:focus {
    outline: none;
}

@keyframes animate {
    0% {
        transform: translateX(0) translateZ(0) scaleY(1);
    }
    50% {
        transform: translateX(-25%) translateZ(0) scaleY(0.5);
    }
    100% {
        transform: translateX(-50%) translateZ(0) scaleY(1);
    }
}

@media (max-width: 480px) {
    .first img {
        height: 150px;
    }

    .line {
        height: 95vh;
    }

    h2{
        font-size:  20px;
    }

    .gmc-button,
    .braintree-button {
        width: 90px;
        height: 35px;
        font-size: 9px;
    }

    .wrap {
        position: relative;
        z-index: 999;
    }

    .braintree-button:hover {
        position: absolute;
        z-index: 9999;
    }

    .braintree-button {
        bottom: 10px;
        margin-top: 0;
    }
}
