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

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

.STlink:link,
.STlink:active,
.STlink:visited {
    font-size: 100%;
    color: aqua;
    transition: color 0.5s;
}

.STlink:hover {
    color: inherit;
    text-decoration: none;
    cursor: none;
}

body {
    background-color: black; 
    background-image: url("../csSIDesigns/time_dark.png"); 
    background-attachment: fixed;
    background-position: center;
    background-size: 100% 100%;
    margin: 0%;
    font-family: 'Jost', sans-serif;

    animation-name: zooomWall;
    animation-duration: 1s;
    animation-delay: 1s;
    animation-fill-mode: both;
}

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

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

/* BEGINS CURTAIN */

.wallZoomIn, .wallZoomOut
{
    animation-name: wallIn;
    animation-delay: 0s;
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
}

.wallZoomOut
{
    animation-name: wallOut;
}

@keyframes wallOut 
{
    100% {
        background-size: 100% 100%;
    }
}

@-webkit-keyframes wallOut {
    100% {
        background-size: 100% 100%;
    }
}

@keyframes wallIn {
    100% {
        background-size: 139% 139%;
    }
}

@-webkit-keyframes wallIn {
    100% {
        background-size: 139% 139%;
    }
}

.magicDisappear, .magicAppear
{
    animation-name: disappear;
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
}

.magicAppear
{
    animation-name: appear;
}

@keyframes disappear {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@-webkit-keyframes disappear {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}

@keyframes appear {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

@-webkit-keyframes appear {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

.expandIt
{
    animation-name: expand;
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
}

@keyframes expand {
    100% {
        transform: scale(1);
    }
}

@-webkit-keyframes expand {
    100% {
        transform: scale(1);
    }
}

.shrinkIt
{
    animation-name: shrink;
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
}

@keyframes shrink {
    100% {
        transform: scale(0.74);
    }
}

@-webkit-keyframes shrink {
    100% {
        transform: scale(0.74);
    }
}

.descent,.ascent
{
    animation-name: throwUp;
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
}

.descent
{
    animation-name: throwDown;
}

@keyframes throwUp{
    100% {
        top: -47%;
    }
}

@keyframes throwDown{
    100% {
        top: 47%;
    }
}

.rHide,.lHide
{
    animation-name: hideRight;
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
}

.lHide
{
    animation-name: hideLeft;
}

@keyframes hideRight{
    100% {
        right: -40%;
    }
}

@-webkit-keyframes hideRight {

    100% {
        right: -40%;
    }
}

@keyframes hideLeft{
    0% {
        /*left: 0%;*/
    }

    100% {
        left: -40%;
    }
}

@-webkit-keyframes hideLeft {
    0% {
        /*left: 0%;*/
    }

    100% {
        left: -40%;
    }
}

.marginSlideLeft,.marginSlideRight
{
    animation-name: marginRight;
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
}

.marginSlideLeft
{
    animation-name: marginLeft;
}

@keyframes marginRight{
    0% {
        margin-left: 0%;
    }

    100% {
        margin-left: 40%;
    }
}

@-webkit-keyframes marginRight {
    0% {
        margin-left: 0%;
    }

    100% {
        margin-left: 40%;
    }
}

@keyframes marginLeft{
    0% {
        margin-right: 0%;
    }

    100% {
        margin-right: 40%;
    }
}

@-webkit-keyframes marginLeft {
    0% {
        margin-right: 0%;
    }

    100% {
        margin-right: 40%;
    }
}


.lSlide,.rSlide
{
    animation-name: slideRight;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
}

.lSlide
{
    animation-name: slideLeft;
}

@keyframes slideRight{
    0% {
        left: -40%;
    }

    100% {
        left: 0%;
    }
}

@-webkit-keyframes slideRight {
    0% {
        left: -40%;
    }

    100% {
        left: 0%;
    }
}

@keyframes slideLeft{
    0% {
        right: -40%;
    }

    100% {
        right: 0%;
    }
}

@-webkit-keyframes slideLeft {
    0% {
        right: -40%;
    }

    100% {
        right: 0%;
    }
}

.curtainLayer
{
    margin-top: 7%;
    margin-bottom: 25%;
    padding: 3%; 
    background-color: transparent;
    border-bottom-left-radius: 47px;
    border-top-right-radius: 47px;
    /*-webkit-backdrop-filter: blur(13px);
    backdrop-filter: blur(13px);*/
    border-radius:47px;
}

#curtainLeft, #curtainRight
{
    text-align: center;
    padding: 2%; 
    position: fixed;
    height: 100%;
    top: 0%;
    background-color: transparent;
    -webkit-backdrop-filter: blur(13px);
    backdrop-filter: blur(13px);
    overflow: scroll;
    z-index: 3;

    width: 40%;
}

#curtainLeft
{
    border-bottom-right-radius: 74px;
    border-top-right-radius: 74px;
    left: -40%;
}

#curtainRight
{
    border-bottom-left-radius: 74px;
    border-top-left-radius: 74px;
    right: -40%;
}

#widget_clock
{
    margin-top: 7%;
}

.blurHeading
{
    border: none;
    font-family: 'Jost', sans-serif;
    display: inline-block;
    -webkit-backdrop-filter: blur(13px);
    backdrop-filter: blur(13px);
    background-color: rgb(44,44,44,0.4);
    padding: 3%;
    padding-left: 7%;
    padding-right: 7%;
    border-radius: 44px; 
    
    color: white;
    transition: all 0.4s;
}

#siB, #ofB, #cssih1
{
    animation-name: notify;
    animation-duration: 0.5s;
    animation-delay: 0.5s;
    animation-fill-mode: both;
}

#cssih1
{
    transform: scale(0.77);
}

.blurHeading:hover
{
    background-color: rgb(74,74,74,0.4);
}

.scheduleButton
{
    background-color: black;
    font-size: 250%;
    padding: 1%;
    padding-left: 4%;
    padding-right: 4%;
    filter: drop-shadow(0px 0px 13px magenta);
    transition: all 0.4s;
    margin: 4%;
}

.scheduleButton:hover
{
    background-color: magenta;
}

#xClose
{
    font-size: 200%;
    position: fixed;
    top: -47%;
    left: 47%;
    padding: 1%;
    margin: 0%;
    font-family: 'Jost', sans-serif;
}

#fourthDimension
{
    display: inline-block;
    -webkit-backdrop-filter: blur(13px);
    backdrop-filter: blur(13px);
    background-color: rgb(44,44,44,0.4);
    padding: 2%;
    border-radius: 44px;
    font-size: 777%;
    font-family: 'Jost', sans-serif;
    color: white;
    animation-name: teleport;
    animation-duration: 0.5s;
    animation-delay: 0.5s;
    animation-fill-mode: both;
    transition: all 0.4s;
}

#fourthDimension:hover
{
    background-color: rgb(74,74,74,0.4);
}

#timetable
{
    margin-top: 7%;
    margin-bottom: 25%;
    display: none;
}

.pingAlert, .pingAlertColumn
{
    text-align: left;
    /*width: 44%;*/
    -webkit-backdrop-filter: blur(13px);
    backdrop-filter: blur(13px);
    background-color: rgb(44,44,44,0.4);
    padding: 1.3%;
    color: white;
    border-radius: 25px;
    margin: 1%; 
    font-size: large;
    /*animation-name: notify;
    animation-duration: 1s;
    animation-delay: 0.5s;
    animation-fill-mode: both;*/
    /*display: none;*/

    transition: all 0.4s;
}

.pingAlertColumn
{
    /*width: 95%;*/
    padding: 3%; 
    margin: 4%;
}

.pingAlert:hover
{
    background-color: rgb(74,74,74,0.4);
}

.pingTitle
{
    font-size: x-large;
}

@keyframes notify
{
    0%
    {
        margin-top: 20%;
        opacity: 0;
        transform: scale(0.5);
    }

    20%
    {
        margin-top: 20%;
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes teleport
{
    0%
    {
        letter-spacing: 50px;
        opacity: 0;
    }
}

#outerST {
    width: 70%;
    margin: 15%;
    margin-top: 1%;
    padding: 4%;
    font-family: 'Jost', sans-serif;
    /*background-image: linear-gradient(147deg, magenta, black, black);
    background-color: black;*/
    /*margin-bottom: 25%;*/
    border-radius: 100px;
    animation-name: floatPopOuter;
    animation-delay: 0.5s;
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

#sessionTimes {
    color: white;
    padding: 3%;
    width: 100%;
    /*background-image: linear-gradient(147deg, magenta, black, black);
    background-color: rgb(33, 33, 33);*/
    -webkit-backdrop-filter: blur(13px);
    backdrop-filter: blur(13px);
    background-color: rgb(13,13,13,0.7);
    transition: transform 0.13s;
    font-size: x-large;
    border-radius: 50px;
/*    box-shadow: 0px 0px 20px black;
*/    animation-name: floatPop;
    animation-delay: 0.5s;
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

@keyframes zoomIn
{
    0% {
        color: black;
    }
}

/*#sessionTimes:hover {
    transform: scale(1.039);
    border-radius: 13px;
}*/

#mainDiv
{
    height: 100%;
    margin: 0;
    margin-top: 1%;
    margin-bottom: 30%;
    border: none;
    border-radius: 0px;
    background-color: transparent;
}

@keyframes floatPop
{
    0% {
        opacity: 0;
        transform: scale(2.3);
    }

    5% 
    {
        opacity: 50%;
    }
}

@keyframes floatPopOuter
{
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    5% 
    {
        opacity: 50%;
    }
}

#addButton,.joinButton
{
    border-radius: 25px;
    box-shadow: 0px 0px 20px magenta;
    background-color: transparent;
    color: white;
    padding: 1%;
    padding-left: 4%;
    padding-right: 4%;

    transition: background-color 0.5s;
}

.joinButton
{
    box-shadow: none;
    padding: 1.3%;
    padding-left: 2.6%;
    padding-right: 2.6%;
    background-color: black;
    border: none;
}

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

.joinButton:hover
{
    background-color: magenta;
    text-decoration: none;
    color: white;
}

#downloadDesktop
    {
        display: block;
        transform: scale(1);
    }

@media only screen and (max-width: 1250px) 
{
    .pingAlert, .pingAlertColumn
{
    animation-name: notify;
    animation-duration: 1s;
    animation-delay: 0.5s;
    animation-fill-mode: both;
}
    #downloadDesktop
    {
        display: none;
    }

    .pingAlert
    {
        width: 97%;
        padding: 4%;
    }

.STlink:link,
.STlink:active,
.STlink:visited {
    font-size: 100%;
    color: yellow;
    transition: color 0.5s;
}

.STlink:hover {
    color: inherit;
    text-decoration: none;
}
#link:link,
    #link:active,
    #link:visited {
        font-size: medium;
    }
#outerST {
        width: 100%;
        margin: 0%;
        background-color: transparent;
        /*background-image: linear-gradient(147deg, magenta, black, black);*/
        border-radius: 44px;
    }
    #sessionTimes {
        padding: 0%;
        width: 100%;
        margin-top: 5%;
        margin-bottom: 5%;
        background-color: transparent;
        background-image: none;
        border-radius: 44px;
        color: white;
        box-shadow: none;
    }
    #mainDiv
    {
        background-image: none;
        background-color: transparent;
        margin-bottom: 174%;
    }
    body
    {
       background-color: grey;
       background-size: auto;
       animation: none;
    }
    .blurHeading
    {
        display: none;
    }
    #timetable
    {
        display: block;
    }
}