* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

body.plain {
    background-image: none;
    background-color: #DCD5C2
}

/* FADE-IN */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

/*/*

/* TITLE EFFECT */

.bubbles {
    display: inline-block;
    font-family: arial;
    position: relative;
}

.bubbles h1 {
    position: relative;
    margin: 1em 0 0;
    font-family: 'Luckiest Guy', cursive;
    color: #fff;
    z-index: 2;
}

.individual-bubble {
    position: absolute;
    border-radius: 100%;
    bottom: 10px;
    background-color: #fff;
    z-index: 1;
}

/*/*/

/* SUBMIT BUTTON CURTAIN EFFECT*/
.buttonfx{
    color: rgb(87, 85, 85);
    outline: none;
    border-radius: 5px;
    background: transparent;
    border: none;
    border-bottom: 4px solid #eee;
    letter-spacing: 0.0625em;
    padding: 14px 26px; 
    text-transform: uppercase;
    font: bold 16px 'Bitter', sans-serif;
    line-height: 2;
    position: relative;
      display: inline-block;
    margin-right: 20px;
    margin-bottom: 20px;
    cursor: pointer;
      text-decoration: none; 
    overflow: hidden;
    transition: all .5s;
    left: 60%;
    margin-top: 3%;
  }

.buttonfx:before,
.buttonfx:after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    background: #259f6c; /* onhover background color */
    z-index: -1;
    transform: translate3D(0,-100%,0); /* move elements above button so they don't appear initially */
    transition: all .5s;
}

.buttonfx:before{
    background: #fafcd6; /* button default background color */
    z-index: -2;
    transform: translate3D(0,0,0);
}

.buttonfx:hover{
	color: white;
}

.buttonfx:hover:after{
    transform: translate3D(0,0,0);
    transition: all .5s;
}

/*/*/

/* MOBILE */
body {
    background-color: #DCD5C2;
    background-image: none;
}

div.wrapper {
    height: 100%;
    width: 100%;
    text-align: center;
    left: -1%;
    position: relative;
    overflow: auto;
}

div.searchBarHolder {
    height: 150px;
    display: inline-block;
    position: relative;
    text-align: center;
    width: 90%;
    margin-top: 15%;
    left: 0%;
}

div.title {
    display: inline-block;
    position: relative;
    width: 100%;
    top: 5%;
    margin-left: 0%;
}

div.subTitle {
    width: 85%;
    display: inline-block;
    position: relative;
    margin-top: 15%;
    left: 0%;
}

div.resultsHolder {
    position:relative;
    text-align: center;
    height: 100%;
    width: 100%;
    overflow: auto;
}

div.resultHolderBlock {
    display: block;
}

div.resultItem {
    display: inline-block;
    margin-bottom: 5px;
    width: 80%;
    margin-top: 10px;
    background-color: #c2dcda;
    box-shadow: 0 0 4px #000;
    transition: width  .25s;
    opacity:0;
    opacity: 1 \9; /*just in case ie*/
    -webkit-animation:fadeIn ease-in 1;
    -moz-animation:fadeIn ease-in 1;
    animation:fadeIn ease-in 1;

    -webkit-animation-fill-mode:forwards;
    -moz-animation-fill-mode:forwards;
    animation-fill-mode:forwards;

    -webkit-animation-duration:2s;
    -moz-animation-duration:2s;
    animation-duration:2s;
}

div.resultItem:hover {
    width: 88%;
}

h1.title {
    font-family: 'Oxygen', sans-serif;
    font-size: 70px;
    color: rgb(59, 59, 59);
    text-shadow: 1px 1px 1px #ccc;
}

h1.songTitleHeader {
    font-size: 20px;
    font-family: 'Oxygen', sans-serif;
    margin-left: 5px;
    margin-right: 5px;
}

h2 {
    font-size: 13px;
    color: rgb(80, 80, 80);
    font-family: 'Source Sans Pro', sans-serif;
}

h2.reference {
    font-size: 25px;
    font-family: 'Source Sans Pro', sans-serif;
}

h2.appDescription {
    margin-top: 8%;
    font-size: 16px;
}

h2.songSnippet {
    margin-left: 10px;
    margin-right: 10px;
}

p.homepagePointer {
    font-size: 13px;
    color: rgb(80, 80, 80);
    font-family: 'Source Sans Pro', sans-serif;
}


div.hidden {
    display: none !important;
}

button.hidden {
    display: none !important;
}

#songLyric {
    width: 300px;
    height: 70px;
    font-size: 20px;
    display: inline-block;
    position:relative;
    left: 0%;
    border: solid 1px gray;
    border-radius: 5px;
    text-align: right;
    box-shadow: 2.5px 5px rgba(0, 0, 0, 0.25);
    background-color: transparent;
    font-family: 'Source Sans Pro', sans-serif;
    color: rgb(87, 85, 85);
    outline-width: 0;
    padding-right: 5px;
}

#songLyric::placeholder {
    text-align: right;
    padding-right: 5px;
}

.curtaindown{
    border: 1px solid rgb(138, 137, 137);
    border-bottom: 1px solid rgb(138, 137, 137);
}

.curtaindown:before,
.curtaindown:after{
    background: #A1CFC5;
    transform: translate3D(0,-100%,0);
}

.curtaindown:after{
    transform: translate3D(0,100%,0);
}

.curtaindown:hover:before,
.curtaindown:hover:after{
    transform: translate3D(0,-50%,0);
    transition: all .5s;
}

.curtaindown:hover:after{
    transform: translate3D(0,50%,0);
}

.buttonfx {
    padding: 14px 60px;
    margin-right: 0px;
    right: 0%;
    left: 0%;
}

button.returnButton {
    padding: 15px 45px;
    margin-top: 15%;
    position: relative;
    left: 0%;
}

button.returnButton::after {
    background: #C2DCDA;
}

button.returnButton::before {
    background: #C2DCDA;
}

img.youTubeImage {
    height: 40px;
    width: 40px;
}
/*/*


/* DESKTOP/LARGER SCREENS */

@media only screen and (min-width: 960px) {

    body {
        background-image: url("https://user-images.githubusercontent.com/53489910/66153915-ec992900-e60b-11e9-9726-a309a35319dd.jpg");
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        background-attachment: fixed;
    }

    div.title {
        display: inline-block;
        height: 100px;
        width: 550px;
        margin-left: -50%;
        margin-bottom: 5%;
    }
    div.wrapper {
        text-align: center;
        top: -5%;
        overflow: auto;
    }

    div.searchBarHolder {
        display: block;
        width: 500px;
        position: absolute;
        left: 11%;
        top: 50%;
        opacity:0;
        opacity: 1 \9; /*just in case ie*/
        -webkit-animation:fadeIn ease-in 1;
        -moz-animation:fadeIn ease-in 1;
        animation:fadeIn ease-in 1;

        -webkit-animation-fill-mode:forwards;
        -moz-animation-fill-mode:forwards;
        animation-fill-mode:forwards;

        -webkit-animation-duration:2s;
        -moz-animation-duration:2s;
        animation-duration:2s;

        -webkit-animation-delay: .75s;
        -moz-animation-delay: .75s;
        animation-delay: .75s;
        margin-top: 0%;
    }

    div.subTitle {
        width: 550px;
        opacity:0;
        opacity: 1 \9; /*just in case ie*/
        -webkit-animation:fadeIn ease-in 1;
        -moz-animation:fadeIn ease-in 1;
        animation:fadeIn ease-in 1;

        -webkit-animation-fill-mode:forwards;
        -moz-animation-fill-mode:forwards;
        animation-fill-mode:forwards;

        -webkit-animation-duration:2s;
        -moz-animation-duration:2s;
        animation-duration:2s;

        -webkit-animation-delay: .75s;
        -moz-animation-delay: .75s;
        animation-delay: .75s;
        margin-left: -45%;
        margin-top: 0%;
    }

    h1.title {
        font-size: 80px;
    }

    #songLyric {
        width: 600px;
        font-size: 30px;
    }

    .buttonfx {
        left: 60%;
        display: inline-block;
        margin-right: 20px;
        margin-bottom: 20px;
        left: 60%;
        margin-top: 3%;
        padding: 14px 26px;
    }

    button.returnButton {
        padding: 20px 150px;
        margin-top: 6%;
    }
}
/*/*


/* TABLETS/MID-SIZE */
@media only screen and (max-width: 960px) and (min-width: 560px) {
    
    body {
        background-color: #DCD5C2;
        background-image: none;
    }

    div.wrapper {
        text-align: center;
        overflow: auto;
    }

    div.searchBarHolder {
        display: inline-block;
        position: relative;
        margin-top: 7%;
        left: 0%;
    }

    div.title {
        display: inline-block;
        margin-left: 0%;
    }
    div.subTitle {
        left: 0%;
        margin-top: 4%;
        width: 550px;
        display: inline-block;
        position: relative;
    }

    h2.appDescription {
        font-size: 22px;
    }

    p.homepagePointer {
        font-size: 16px;
    }

    #songLyric {
        width: 500px;
        font-size: 20px;
    }

    button.returnButton {
        margin-top: 10%;
    }

    .buttonfx {
        left: 3%;
        margin-top: 5%;
        padding: 14px 80px;
    }
}
/*/*/


