body {
    margin: 0 auto;
    overflow: hidden;
    height: 100%;
}

#title {
    
    position: fixed;
    width: 500px;
    height: 200px;
    margin: 0px auto;
    left: 0;
    right: 0;
    
}

#top {
    background-color: rgb(114, 106, 106);
    margin: 0 auto;
    text-align: center;
    font-size: 4vh;
    color: white;
    line-height: 270%;
    vertical-align: middle;
    cursor: default;
    user-select: none;
    text-shadow: 3px 3px 2px #000000;
    width: 100vw;
    height: 10vh;
}

.border {
    border: 3px solid #000000;
}

.music-box {
    padding: 50px;
    text-align: center;
}

.row {
    margin: 0 auto;
    position:absolute;
    overflow-y: scroll;
    background-image: url("../Assets/png/background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    height: 80vh;
}

audio {
    display: none;
}

img {
    margin: 0 auto;
    padding-bottom: 5px;
    height: inherit;
}

div .btn {
    margin-bottom: 5px;
    width: 30%;
}

.form-control {
    display: unset;
    padding: 0.5rem 0;
    width: 70%;
    background-color: rgba(255, 255, 255, 0.8);
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.8);
}

.form-control::-webkit-input-placeholder {
    color: rgba(94, 88, 88, 0.75);
}

.form-control::-moz-placeholder {
    color: rgba(94, 88, 88, 0.75);
}

.col-lg-4 {
    -webkit-transition: background-color 0.5s linear;
    -moz-transition: background-color 0.5s linear;
    transition: background-color 0.5s linear;
}

.footer {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1rem;
    background-color: #efefef;
    text-align: center;
    height: 5%;
    overflow-y: scroll;
}

.play {
    transition: all .2s ease-in-out; 
}

.play:hover {
    transform: scale(1.1);
}

.btn-success {
    background-color: #4DC098;
    border-color: #4DC098;
}

.btn-success:hover {
    background-color: #04AA70;
    border-color: #4DC098;
  }

#score {
    background-color: rgb(145, 134, 134);
    margin: 0 auto;
    text-align: center;
    font-size: 2vh;
    color: white;
    line-height: 270%;
    vertical-align: middle;
    cursor: default;
    user-select: none;
    text-shadow: 3px 3px 2px #000000;
    width: 100vw;
    height: 5vh;
}

#reset {
    float: right;
    height: inherit;
    background-color: #4DC098;
    border: none;
    text-align: center;
    line-height: 0;
    color: white;
    position: static;
}

@media(max-width: 768px) {
    #title {
        position: relative;
    }

    #reset {
        font-size: 2vh;
    }

    .ans {
        white-space: normal;
        font-size: 15px;
    }
}