h1 {
    color: white;
    font-family: "Open Sans", sans-serif;
    font-size: 50pt;
    letter-spacing: 4px;
    margin-bottom: 0;
}

h2 {
    color: #6ab530;
    font-family: "Open Sans", sans-serif;
    letter-spacing: 4px;
    font-size: 26pt;
}

.wrapper-img {
    background-color: #000000;
    padding: 40px 0;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    background-position-y: center;
    background-image: url(/img/fiddle-wrapper.png);
    background-position-x: left;
    min-width: 320px;
}

form {
    background: linear-gradient(#031129, #000614);
    border: 1px solid #f6f7f8;
    border-radius: 7px;
    padding: 20px 60px;
    max-width: 760px;
    width: calc(100% - 20px);
    margin: auto;
}

.form-title {
    font-family: "Open Sans", sans-serif;
    text-align: center;
    font-weight: bold;
    font-size: 21pt;
}

.form-title span, .total_stats span {
    color: #6ab530;
}

.glow-line {
    position: relative;
    width: 100%;
    height: 30px;
    background: transparent;
}

.glow-line::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    transform: translateY(-50%);
    background: linear-gradient(to right, transparent 0%, rgba(105, 255, 0, 0.15) 15%, rgba(105, 255, 0, 0.5) 35%, #7cff00 50%, rgba(105, 255, 0, 0.5) 65%, rgba(105, 255, 0, 0.15) 85%, transparent 100%);
}

.glow-line::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 10px;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse at center, #ffffff 0%, #dfff9c 8%, rgba(124, 255, 0, 0.9) 18%, rgba(124, 255, 0, 0.35) 45%, transparent 75%);
    filter: blur(1px);
    pointer-events: none;
}

.field {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.field img {
    width: 30px;
    margin-right: 10px;
}

.field label {
    font-family: "Open Sans", sans-serif;
    font-size: 13pt;
    width: 130px;
}

.field .input, .field .file {
    font-family: "Open Sans", sans-serif;
    flex-grow: 1;
    border: 2px solid #212c44;
    background-color: #030f23;
    border-radius: 7px;
    padding: 7px 12px;
    font-size: 12pt;
    color: white;
}

.field .file {
    padding: 7px;
    font-size: 11pt;
}

.submit_btn {
    font-family: "Open Sans", sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    border: 2px solid #93ce25;
    background: linear-gradient(#5bb51a, #247b0d);
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    border-radius: 7px;
    justify-content: center;
    color: white;
    font-size: 18pt;
    padding: 8px;
}

.submit_btn img {
    width: 35px;
    margin-right: 20px;
}

.submit_btn:hover {
    background: linear-gradient(#247b0d, #5bb51a);
}

.separator {
    background-color: white;
    height: 2px;
    width: 100%;
    margin: 15px 0;
}

.total_stats {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Open Sans", sans-serif;
    font-size: 13pt;
    font-weight: 600;
}

.total_stats img {
    width: 40px;
}

.total_stats span {
    font-size: 15pt;
    font-weight: 800;
    margin: 0 10px;
}

.results {
    background: linear-gradient(#031129, #000614);
    border: 1px solid #f6f7f8;
    border-radius: 7px;
    padding: 20px;
    max-width: 1320px;
    width: calc(100% - 100px);
    margin: 50px auto;
}

.result_title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.result_title img {
    width: 40px;
    margin-right: 20px;
}

.result_title .result_text h3 {
    font-family: "Open Sans", sans-serif;
    font-size: 18pt;
    text-transform: uppercase;
    margin: 0;
}

.result_title .result_text span {
    font-family: "Open Sans", sans-serif;
    font-size: 12pt;
}

.result_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #ffffff;
    background-color: #0a1d2f;
    padding: 15px;
    border-radius: 7px;
    margin-top: 15px;
}

.result_item img {
    width: 70px;
}

.result_item .song_name {
    font-family: "Open Sans", sans-serif;
    font-size: 13pt;
    width: 240px;
}

.result_item .audio_item .audio_title {
    font-family: "Open Sans", sans-serif;
    font-size: 13pt;
    color: #3edf00;
    text-align: center;
    margin-bottom: 5px;
}

.result_item .audio_item audio {
    max-width: 100%;
}

@media (min-width: 769px) and (max-width: 1200px) {
    .result_item {
        flex-wrap: wrap;
    }

    .result_item .audio_item {
        width: calc(100% / 3);
    }

    .result_item .song_name {
        width: calc(100% - 100px);
        text-align: center;
    }

    .result_item .audio_item audio {
        display: block;
        margin: auto;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .results {
        width: calc(100% - 20px);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 30pt;
        letter-spacing: 0;
    }

    h2 {
        letter-spacing: 0;
        font-size: 17pt;
    }

    form {
        padding: 15px;
        max-width: 570px;
    }

    .field img {
        width: 20px;
    }

    .form-title {
        font-size: 16pt;
    }

    .field label {
        font-size: 11pt;
        width: 100px;
    }

    .field .input, .field .file {
        padding: 5px;
        font-size: 10pt;
    }

    .submit_btn img {
        width: 23px;
        margin-right: 10px;
    }

    .submit_btn {
        font-size: 15pt;
        padding: 6px;
    }

    .total_stats img {
        width: 33px;
    }

    .total_stats {
        font-size: 11pt;
    }

    .total_stats span {
        font-size: 13pt;
    }

    .results {
        width: calc(100% - 20px);
        padding: 15px;
    }

    .result_title img {
        width: 33px;
        margin-right: 10px;
    }

    .result_title .result_text h3 {
        font-size: 15pt;
    }

    .result_title .result_text span {
        font-size: 10pt;
    }

    .result_item {
        padding: 10px;
        flex-wrap: wrap;
    }

    .result_item img {
        width: 50px;
    }

    .result_item .song_name {
        font-size: 11pt;
        width: calc(100% - 65px);
    }

    .result_item .audio_item {
        width: 100%;
    }

    .result_item .audio_item .audio_title {
        font-size: 11pt;
    }

    .result_item .audio_item audio {
        width: 100%;
    }
}

@media (max-width: 424px) {
    .field .input, .field .file {
        width: 100%;
        margin-top: 5px;
    }

    .field {
        flex-wrap: wrap;
    }
}