#link:link,
#link:active,
#link:visited {
    font-size: x-large;
    color: white;
    transition: color 0.5s;
}

#link:hover {
    color: magenta;
    text-decoration: none;
}

#item {
    padding: 0.5%;
    padding-left: 0%;
    font-size: large;
}

.playlist
{
    width: 100%; height: 70%;border-radius: 25px;margin-bottom: 2.5%
}

#wallButton
{
    font-family: Arial;
    border: none;
    padding: 0.7%;
    border-radius: 74px;
    margin-left: 21%;
    margin-right: 21%;
    font-size: 93%;
    -webkit-backdrop-filter: blur(44px);
    backdrop-filter: blur(44px);
    background-color: rgb(4,4,4,0.4);
    color: white;
    margin: 0;
    position: fixed;
    right: 3%;
    bottom: 2.34%;
    animation-name: skidR;
    animation-delay: 0.5s;
    animation-duration: 0.5s;
    animation-fill-mode: both;

    transition: color 0.4s, background-color 0.7s, transform 0.4s;
}

#wallButton:hover
{
    color: black;
    cursor: none;
    background-color: white;
    transform: scale(1.1347);
}

@keyframes skidR {
  0% {
        right: -4%;
        bottom: -4%;
    }
}

@-webkit-keyframes skidR {
    0% {
        right: -4%;
        bottom: -4%;
    }
}

#title
{
    border-radius: 74px;
    margin-left: 21%;
    margin-right: 21%;
    font-size: 93%;
    /*-webkit-backdrop-filter: blur(44px);
    backdrop-filter: blur(44px);
    background-color: rgb(44,44,44,0.2);*/
    color: white;
}

@keyframes launch {
    0% {
        transform: scale(9.13);
    }
}

@-webkit-keyframes launch {
    0% {
        transform: scale(9.13);
    }
}

body {
    width: 100%;
    color: white;
    margin: 0;
    background-color: black;
    background-image: url("../csSIDesigns/home_flare.png");
    background-attachment: fixed;
    background-position: center;
    background-size: 100% 100%;
    animation-name: zooomWall;
    animation-duration: 1s;
    animation-delay: 0.5s;
    animation-fill-mode: both;
}

@keyframes zooomWall {
    0% {
        background-size: 139% 139%;
    }
}

@-webkit-keyframes zooomWall {
    0% {
        background-size: 139% 139%;
    }
}

#welcome {
    font-size: 749%;
    font-family: 'Comfortaa', cursive;
    padding-top: 20%;
    /*padding-bottom: 45%;*/
    color: white;
    background-color: transparent;
    animation-name: welcomeMove;
    animation-duration: 0.5s;
    animation-fill-mode: both;
}

@keyframes welcomeMove {
    0% {
        opacity: 0;
        transform: scale(0.13);
    }
}

@-webkit-keyframes welcomeMove {
    0% {
        opacity: 0;
        transform: scale(0.13);
    }
}

#outerLS {
    width: 90%;
    margin: 5%;
    padding: 5%;
    font-family: 'Myriad Pro Regular';
    background-color: transparent;
}

#latestSessions {
    color: white;
    padding: 4%;
    width: 100%;
    background-color: transparent;
    border-radius: 47px;
    transition: transform 0.13s;
    margin-bottom: 25%;
}

.LSlink:link,
.LSlink:active,
.LSlink:visited {
    font-size: 150%;
    color: darkgrey;
    transition: color 0.3s, border-radius 0.3s, padding 0.1s, 
    background-color 0.2s, margin-left 0.2s;
}

.LSlink:hover {
    text-decoration: none;
    color: white;
    background-color: rgb(213,213,213,0.4);
    box-shadow: 0px 0px 13px black;
    text-decoration: none;
    -webkit-backdrop-filter: blur(44px);
    backdrop-filter: blur(44px);
    border-radius: 44px;
    padding: 1%;
    cursor: none;
    margin-left: -1%;
    animation-name: shine;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

@keyframes shine {
    50%
    {
        background-color: rgb(13,13,13,0.4);
        box-shadow: 0px 0px 7px white;
        color: white;
    }
}

@-webkit-keyframes shine {
    50%
    {
        background-color: rgb(13,13,13,0.4);
        box-shadow: 0px 0px 7px white;
        color: white;
    }
}

@media only screen and (max-width: 1250px) {
    #link:link,
    #link:active,
    #link:visited {
        font-size: medium;
    }
    body {
        width: 100%;
        height: 200%;
        color: yellow;
        margin: 0;
        background-color: black;
        background-image: url("../csSIDesigns/home_flare.png");
        background-position: center;
        background-attachment: scroll;
        background-size: auto;
        animation: none;
    }
    #welcome {
        height: 70%;
        font-size: 300%;
        font-family: 'Comfortaa', cursive;
        padding-top: 50%;
        padding-bottom: 40%;
        color: white;
        background-color: transparent;
        animation-name: welcomeMove;
        animation-duration: 0.5s;
        animation-fill-mode: both;
    }
    #outerLS {
        width: 100%;
        margin: 0%;
        margin-bottom: 50%;
        /*margin-top: 50%;*/
    }
    #latestSessions {
        padding: 2%;
        width: 100%;
        margin-bottom: 47%;
    }

    #title
    {
    border-radius: 74px;
    margin-left: 13%;
    margin-right: 13%;
    font-size: 234%;
    color: white;
    background-color: rgb(44,44,44,0.1);
    }

    .playlist
{
    width: 100%; height: 30%;border-radius: 25px;margin-bottom: 2.5%
}
#wallButton
    {
        display: none;
    }
}

@media only screen and (max-width: 1000px) {
    #title
    {
    border-radius: 74px;
    margin-left: 13%;
    margin-right: 13%;
    font-size: 97%;
    color: white;
    background-color: rgb(44,44,44,0.1);
}
}