    .flash-border {
        border: 3px solid transparent;
        animation: blink 1s ease-in-out 3;
    }


    @keyframes blink {

        0%,
        100% {
            border-color: transparent;
            box-shadow: 0 0 0 rgba(43, 223, 254, 0);
        }

        50% {
            border-color: #2bdffe;
            box-shadow: 0 0 15px rgba(43, 223, 254, 0.6);
        }
    }

    .box {
        display: flex;
        align-items: center;
        flex-direction: column;
        padding: 40px;
        margin: 40px 0;
        background-color: rgba(34, 34, 34, 1);
        border-radius: 10px;
        max-width: 1920px;
    }

    .box h2 {
        text-align: center;
        font-size: 24px;
        margin: 20px;
    }

    .align-explanation {
        width: 100%;
    }

    .explanation {
        width: 100%;
        display: flex;
        justify-content: space-between;
        flex-direction: column;
    }


    .explanation li {
        font-size: 16px;
        padding: 10px;
    }

    .explanation video {
        max-width: 600px;
    }

    .align-alertbox {
        width: 100%;
    }

    #bookmark {
        display: flex;
        flex-direction: column;
    }

    #bookmark ul {
        list-style-type: '\2C3';
    }

    #bookmark li {
        margin: 10px;
    }

    #bookmark a {
        text-decoration: none;
        color: #2bdffe;
        margin: 10px;
        font-size: 20px;
        transition: color 0.7s ease;
    }

    #bookmark a:hover {
        color: white;
    }

    .align-boomarks {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .align-tags {
        display: flex;
        flex-direction: column;
    }

    .tag {
        width: 100%;
    }

    .tag h3 {
        font-size: 20px;
        text-align: center;
        margin: 20px 0px 10px 0px;
    }

    .align-music {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    #spotifyMusic {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    #spotifyMusic li {
        font-size: 16px;
        padding: 10px;
    }

    #bigBox video {
        width: 100%;
    }

    #faqMusic {
        margin-top: 10px;
    }

    #scrobler {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    #scrobler li {
        font-size: 16px;
        padding: 10px;
    }

    #scrobler video {
        max-width: 600px;
    }

    #scrobler-last {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    #scrobler-last ul {
        display: flex;
        align-items: start;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }

    #scrobler-last a {
        text-decoration: none;
        transition: color 0.7s ease;
    }

    #scrobler-last a:hover {
        color: #2bdffe;
    }

    #alignFaq {
        display: flex;
        flex-direction: column;
    }

    #faq {
        display: flex;
        flex-direction: column;
        margin-bottom: 20px;
    }

    .faq-question {
        margin-bottom: 20px;
    }

    .faq-question h4 {
        font-size: 21px;
        margin-bottom: 10px;
    }

    #linksForHelp {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        align-items: stretch;
    }

    #linksForHelp img {
        height: 40px;
    }

    #linksForHelp button {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-around;
        cursor: pointer;
        font-size: 16px;
        padding: 5px;
        border-radius: 10px;
        border-color: #2bdffe;
        background-color: transparent;
        color: rgb(32, 24, 24);
        max-width: 200px;
    }

    #linksForHelp button a {
        text-decoration: none;
    }

    #socials {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #socials h3 {
        color: #2bdffe;
        text-align: center;
        font-size: 30px;
        margin-bottom: 20px;
    }

    #linksForHelp {
        width: 100%;
        display: flex;
        justify-content: space-between;
        flex-direction: row;
    }


    @media screen and (min-width:650px) {
        #bookmark {
            justify-content: space-around;
            flex-direction: row;
        }
    }

    @media screen and (min-width:850px) {
        .explanation {
            flex-direction: row;
        }

        .explanation video {
            width: 400px;
        }

        #spotifyMusic {
            justify-content: space-between;
            flex-direction: row;
        }

        #bigBox video {
            width: 400px;
        }

        #scrobler-last {

            justify-content: space-between;
            flex-direction: row-reverse;
        }

        #scrobler-last ul {
            width: 100%;
        }

        #scrobler-last video {
            width: 400px;
        }

        #alignFaq {
            justify-content: space-between;
            flex-direction: row;
        }

        #faq {
            width: 45%;
        }

        #socials {
            width: 45%;
        }
    }

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

        .box {
            padding: 40px 60px;
        }

        .align-explanation {
            display: flex;
            justify-content: space-between;
            flex-direction: row;
            margin-bottom: 20px;
        }

        .align-explanation ul {
            width: 40%;
        }

        .align-explanation video {
            height: 100%;
            width: 60%;
        }

        .divs {
            display: flex;
            flex-direction: column;
            justify-content: space-between;

            min-height: 100%;
            width: 45%;
        }

        .explanation {
            height: 100%;
        }

        .box h2 {
            font-size: 28px;
        }

        #bigBox {
            display: flex;
            flex-direction: row;
        }

        #faqMusic {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 0 100px;
            width: 100%;
        }

        #scrobler {
            justify-content: space-between;
            flex-direction: row;
        }

        #scrobler-last {
            width: 60%;
        }

        #align-faq {
            justify-content: space-around;
        }

        #faq {
            width: 35%;
        }

        #socials {
            width: 35%;
        }

        .align-bookmarks {
            width: 50%;
            display: flex;
            flex-direction: row;
            justify-content: space-around;
        }

        .align-tags {
            justify-content: space-between;
            flex-direction: row;
        }

        .tag {
            margin: 20px;
            width: 45%;
        }
    }

    @media screen and (min-width: 1920px) {
        .box {
            margin: 40px auto;
        }
    }