body {
    background: #262239;
}

/*************** // nav bar start // ***************/

.navMenu {
    position: relative;
    display: flex;
    justify-content: center;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.navMenu a {
    
    color: #f6f4e6;
    text-decoration: none;
    font-size: 1.2em;
    text-transform: uppercase;
    font-weight: 500;
    display: grid;
    width: 120px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.navMenu a:hover {
    color: #2ecc;
}


/*************** // nav bar end // ***************/

.text-color {
    color: #fff;
}

.text-animation {
    margin: 0;
    line-height: 1;
    font-size: 6em;
    color: transparent;
    text-transform: uppercase;
    background-image: linear-gradient(to right, #2ecc, #3498db, #9b5936, #f39367);
    -webkit-background-clip: text;
    animation: animated 2s linear infinite;
    -webkit-background-size: 200%;
    background-size: 200%;
}

@keyframes animated {
    0% {
        background-position: 0 100%;
    }

    50% {
        background-position: 100% 0;
    }

    100% {
        background-position: 0 90%;
    }

}

.container {
    margin-top: 0;
    margin-right: auto;
    margin-left: auto;
    max-width: 450px;
}

.header-title {
    font-family: 'Audiowide', cursive;
    text-align: center;
}

.logo {
    width: 95%;
}

.logo-text {
    width: 80%;
}

#dropArea {
    width: 100%;
    border: 4px dashed #ddd;
    border-radius: 3px;
    min-height: 250px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    text-align: center;
    justify-content: center;
}

#dropArea>* {
    margin-bottom: 15px;
}

#dropArea input {
    position: absolute;
    width: 100%;
    min-height: 250px;
    opacity: 0;
}

#dropArea .mp3 {
    width: 70px;
}

textarea {
    min-height: 160px;
    background-color: #fff !important;
}

.question-mark {
    background-color: #2ecc;
    border-radius: 60%;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.form-control:focus {
    border-color: #2ecc;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(27, 233, 199, 0.603);
}

button {
    z-index: 1000;
}

.btn {
    background-color: rgba(19, 134, 115, 0.8);
    border: white;

}

.btn:hover {
    background-color: aquamarine;
    color: black;
}

a {
    color: #6c757d;
}

@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

@media (max-width: 768px) {
    div[class^="row"] {
        padding-left: 11px;
        padding-right: 11px
    }

    div[class^="col"] {
        padding: 4px;
    }
}

@media (min-width: 768px) {
    div[class^="container"] {
        margin-top: 30px;
    }

    div[class^="col"] {
        padding: 4px;
    }
}