* {
    box-sizing: border-box;
}

body {
    background: url('../images/bg.jpg') no-repeat center center/cover;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
}


/* Start of: Water Animation */

#mountainWaterWave {
    position: absolute;
    top: 80%;
    left: 0;
    width: 100%;
    height: 30%;
    z-index: 10;
  
}

h1 {
    text-align: center;
}

.title_top {
    position: absolute;
    top: 7%;
    right: 50%;
    transform: translate(50%, -50%);
    color: rgb(255, 255, 255);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.7em;
    font-weight: 500;
    text-align: center;
}

.container {
    position: absolute;
    top: 7%;
    text-align: center;
    z-index: 4;
}

.initialize-btn {
    z-index: 100;
    position: absolute;
    bottom: 2px;
    text-align: center;
    background-color: transparent;
    background-color: #55b7a4;

}

.init {
    box-shadow: inset 0px 1px 0px 0px #7bc6dd;
    background: linear-gradient(to bottom, #62c9db 5%, #25a8db 100%);
    background-color: #81c2ee;
    border-radius: 4px;
    border: 2px solid #000000;
    display: inline-block;
    cursor: pointer;
    color: #ffffff;
    font-family: Trebuchet MS;
    font-size: 19px;
    font-weight: bold;
    letter-spacing: 12px;
    padding: 9px 21px;
    text-decoration: none;
    text-shadow: 0px 1px 2px #11aaaf;


}

.init:hover {
    background: linear-gradient(to bottom, #907ff1 5%, #8a3ce2 100%);
    background-color: #907ff1;
    font-size: 22px;
    border: 4px solid black;
    color: rgb(247, 247, 247);
}

.init:active {
    position: relative;
    top: 1px;
}

.cosmic-motion-dropShadow{
    filter: drop-shadow(8px 8px 10px rgb(0, 0, 0));
     /* filter: drop-shadow(8px 8px 10px rgb(105, 15, 223)); */
}
.cosmic-motion-filter {
    filter: grayscale(50%) invert(100%);
    -webkit-filter: grayscale(50%) invert(100%);
}

.cosmic-motion-remove {
    /* filter:none;
    -webkit-filter:none; */
    filter: drop-shadow(8px 8px 10px gray);
}