
html, body {
    height: 100%;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;


}

img#logo{
    /*transition: transform .2s;*/
    box-shadow: 0 0 10px white, 0 0 20px #9438ee;
}

/*img#logo:hover {
    transform: scale(1.5);
    box-shadow: 0 0 10px #5cf705;
}*/

.gradient {
    background: rgb(51,51,51);
    background: linear-gradient(90deg, rgba(51,51,51,1) 0%, rgba(150,150,150,1) 100%);

}
.section-1 {
    margin-top: 0.2rem;
    font-size: 1.25rem;
    color: white;
}
.btn {
    /*background: linear-gradient(
        45deg,
        hsla(0, 0%, 9%, 0.5),
        hsla(0, 0%, 21%, 0.5) 100%
      );*/

    background: rgb(50,81,247);
    background: radial-gradient(circle, rgba(50,81,247,1) 0%, rgba(148,56,238,1) 100%);
    color: white;
    height: 80px;
    width: 200px;
    box-shadow:0 0 20px #9438ee;
    border-radius: 5%;
    transition: transform .4s;
    animation: btn 1s ease-in-out infinite alternate;
    font-size: 25px;
    margin-top:20px;

}
@-webkit-keyframes btn {
    /*Glow color prior to glowing out*/
    from {
      text-shadow: 0 0 10px #fff;
    }
    /*Glowing out color*/
    to {
      text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px violet, 0 0 40px violet;
    }

}
.btn:hover {
    transform: scale(1.2);
    color: white;
}

li {
    list-style-type: none;
    line-height: 2.5rem;
    margin: 1em 0;
}
li:before {
    content: "✓";
    padding-right: 5px;
    color: white !important; 
}
li.list-item-special {
    color: lawngreen;
    text-shadow: 0 0 25px lawngreen;

}
li.list-item-special:before {
    content: "✓";
    padding-right: 5px;
    color: lime !important;
}

h2 {
    font-family: 'Gabarito', sans-serif;
    font-family: 'Montserrat', sans-serif;

}
h4 {
    text-shadow: 0 0 20px white;
}

.footer {
    background-color: #333;
    color: white;
}


.card {
    perspective: 150rem;
    position: relative;
    height: 30rem;
    max-width: 340px;
    width:340px;
    margin: 2rem;
    box-shadow: none;
    background: none;
    cursor:pointer;
    transition: transform .4s;


}
.card:hover {
    box-shadow: 0 0 30px white;
}
  
.card-side {
    height: 30rem;
    border-radius: 15px;
    border: solid 2px white;
    box-shadow: 0 0 10px white, 0 0 20px #9438ee;
    transition: all 0.8s ease;
    backface-visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding:2rem;
    color: white;
    display:flex;
    justify-content:center;
    align-items:center;
}
  
.card-side.back {
    transform: rotateY(-180deg);
    background: rgb(150,150,150);
    background: radial-gradient(circle, rgba(150,150,150,1) 0%, rgba(0,0,0,1) 100%);
    color: white;
}
  
.card-side.front {

    background: rgb(50,81,247);
    background: radial-gradient(circle, rgba(50,81,247,1) 0%, rgba(148,56,238,1) 100%);

}
/*can do .card:hover .card-side.front if you want it to flip on hover*/
.card.is-flipped .card-side.front {
    transform: rotateY(180deg);
}
  
.card.is-flipped .card-side.back {
    transform: rotateY(0deg);
}


 i.icon {
    color: white;
    font-size: 50px;
    width: 100%;
    height: 100%;

}

.logo {
    /*font-size: 80px;*/
    color: silver; /*text color*/
    /*text-align: center;*/
    animation: logo 1.5s ease-in-out infinite alternate;
}
  
  @-webkit-keyframes logo {
    /*Glow color prior to glowing out*/
    from {
      text-shadow: 0 0 10px #fff;
    }
    /*Glowing out color*/
    to {
      text-shadow: 0 0 10px #9438ee, 0 0 20px #9438ee, 0 0 30px #9438ee, 0 0 40px #9438ee;
    }
}
.card-body-special {
    color: white;
    animation: card-body-special 1.2s ease-in-out infinite alternate;

}
@-webkit-keyframes card-body-special {
    /*Glow color prior to glowing out*/
    from {
      text-shadow: 0 0 10px white;
    }
    /*Glowing out color*/
    to {
      text-shadow: 0 0 10px violet, 0 0 20px violet, 0 0 30px violet, 0 0 40px violet;
    }
}
.lets-go {
    color: #9438ee;
    font-size: 40px;
}
.cp {
    font-size: 25px;
}
textarea {
    width: 100%;
}
::placeholder{
    font-size: 18px;
    font-style: italic;
}
label{
    color: purple;
    font-size: 20px;
    float: left;

}
#submitBtn{
    background-color: purple;
}
#submitBtn:disabled{
    opacity: 0.5;
}

.modal-title{

}



