* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


body {
    margin: 0;
    padding: 0;
    background-image: url('assets/bg.png');
    background-size: cover;
}

.buttonType {
    color: red;
}

.primary {
    padding: 15px 25px;
    font-size: 24px;
    text-align: center;
    cursor: pointer;
    outline: none;
    color: #fff;
    background-color: #04AA6D;
    border: none;
    border-radius: 15px;
    box-shadow: 0 9px #999;
  }
  
 
.primary:active {
    background-color: #3e8e41;
    box-shadow: 0 5px #666;
    transform: translateY(4px);
}


.btn-position-1 {
    width: 90vw;
    height: 40px;
    position: absolute;
    top: calc((80vh - 50px) + 20px);
    margin: 5vw;
}

.btn-position-2 {
    width: 90vw;
    height: 40px;
    position: absolute;
    top: calc((80vh - 50px) + 80px);
    margin: 5vw;
}

.cta-position {
    width: 90vw;
    height: 80px;
    top: calc((80vh - 50px) + 80px);
    margin: 5vw;
}


.btn-hover {

    font-size: 16px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    
    text-align:center;
    border: none;
    background-size: 300% 100%;

    border-radius: 50px;
    moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.btn-hover:active {
    background-position: 100% 0;
    moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    margin-top: 25px;
}

.btn-hover:focus {
    outline: none;
}

button.card:active {
    background-position: center 40px;
    top: 10px;
    moz-transition: all .1s ease-out;
    -o-transition: all .1s ease-out;
    -webkit-transition: all .1s ease-out;
    transition: all .1s ease-out;

}

.grid .card {
    top: 0;
    width: 100%;
    height: 240px;
    background-color: #F9EDE2;
    background-image: url("assets/violin.png");
    background-position: center 60px;
    background-size: 140%;
    background-repeat: no-repeat;

    margin-bottom: 20px;
    border: 4px solid #383838;
    box-shadow: 0px 9px 15px rgba(112, 55, 15, 0.2);
    border-radius: 20px;
}

.grid .card span {
    display: block;
    width: 100%;
}

.btn-hover.color-1 {
    background-image: linear-gradient(to right, #25aae1, #40e495, #30dd8a, #2bb673);
    box-shadow: 0 4px 15px 0 rgba(49, 196, 190, 0.75);
}

.btn-hover.color-2 {
    background-image: linear-gradient(to right, #f5ce62, #e43603, #fa7199, #e85a19);
    box-shadow: 0 4px 15px 0 rgba(229, 66, 10, 0.75);
}

.btn-hover.color-3 {
    background-image: linear-gradient(to right, #CC095B, #FF2459, #E12D58);
    box-shadow: 0 0px 18px 0 rgba(0, 0, 0, 0.2);
}


.bounce {
    animation: bounce 2s ease infinite;
}

@keyframes bounce {
    70% { transform:translateY(0%); }
    80% { transform:translateY(-15%); }
    90% { transform:translateY(0%); }
    95% { transform:translateY(-7%); }
    97% { transform:translateY(0%); }
    99% { transform:translateY(-3%); }
    100% { transform:translateY(0); }
}

.bounce2 {
    animation: bounce2 2s ease infinite;
}
@keyframes bounce2 {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-30px);}
    60% {transform: translateY(-15px);}
}











