#dlink:link,
#dlink:active,
#dlink:visited {
    color: white;
    transition: color 0.5s;
}

#dlink:hover {
    color: red;
    text-decoration: none;
}

#link:link,
#link:active,
#link:visited {
    color: white;
    transition: color 0.3s, border-radius 0.3s, padding 0.1s;
}

#link:hover {
    color: red;
    text-decoration: none;
    border-radius: 47px;
    background-color: black;
    padding: 1%;
    box-shadow: 0px 0px 10px red;
    cursor: none;
}

#item {
    padding: 1%;
    transition: transform 0.3s, background-color 0.3s;
    transition-timing-function: ease-in-out;
}

#item:hover 
{
    transform: scale(1.047);
}

body {
    margin: 0;
    width: 100%;
    background-image: url("../csSIDesigns/CS211_SI_Online_background.png");
    background-attachment: fixed;
    background-position: center;
    background-size: 100% 100%;
    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%;
    }
}

.bar {
    font-family: "Dancing Script";
    font-size: 300%;
    color: white;
    margin: 0;
    width: 50%;
    margin-top: 25%;
    margin-bottom: 50%;
    top: 30%;
    left: 0%;
    padding: 0;
    border-radius: 100px;
    animation-name: land;
    animation-fill-mode: both;
    animation-duration: 1s;
    -webkit-backdrop-filter: blur(13px);
    backdrop-filter: blur(13px);
}

@keyframes land {
    0% {
        opacity: 0.1;
        border-color: red;
        margin-top: 0%;
    }
}

#semHead
{
    text-align: center;
    font-family: 'Comfortaa',cursive;
    color: white;
    font-size: x-large;

    -webkit-backdrop-filter: blur(13px);
    backdrop-filter: blur(13px); 
    padding: 1%;

    background-color: rgb(44,44,44,0.4);
}

#imgOptionFall,#imgOptionSpring,#imgOptionSummer
{
    width: 100%;
    height: 74%;
    margin: 0%;    
    background-color: transparent;
    background-image: url("../csSIDesigns/Fall.png");
    background-size: 50% 50%;
    background-repeat: no-repeat; 
    background-position: center;
    transition: background-size 0.5s;
     -webkit-backdrop-filter: blur(13px);
    backdrop-filter: blur(13px);
    border: none; 
}

#imgOptionSpring
{
   
   background-image: url("../csSIDesigns/Spring.png"); 
}

#imgOptionSummer
{
   background-size: 50% 35%;
   background-image: url("../csSIDesigns/Summer.png");
}

#imgOptionFall:hover
{
    background-size: 75% 75%;
}

#imgOptionSpring:hover
{
    background-size: 75% 75%;

}

#imgOptionSummer:hover
{
    background-size: 100% 70%;
}

#FallButton,
#SummerButton,
#SpringButton {
    font-size: 200%;
    font-family: "Dancing Script";
    width: 50%;
    text-align: center;
    padding: 15px;
    border: none;
    background-color: transparent;
    border-radius: 75px;
    margin-top: -20%;
    margin-bottom: 30%;
    color: white;
    transition: width 0.5s, background-color 0.2s;
    -webkit-backdrop-filter: blur(13px);
    backdrop-filter: blur(13px);
}

#FallButton:hover,
#SummerButton:hover,
#SpringButton:hover {
    background-color: darkred;
    font-family: "Dancing Script";
    text-align: center;
    padding: 15px;
    color: white;
}

#videolist4
{
    margin-top: -30%;
    margin-bottom: 20%;
}

#videolist3,
#videolist1,
#videolist2 {
    font-size: 150%;
    font-family: 'Myriad Pro Regular';
    width: 100%;
    text-align: center;
    padding: 0%;
    padding-top: 2%;
    padding-bottom: 1%;
    border-radius: 55px;
    background-color: transparent;
/*    background-image: linear-gradient(to right, black, black, transparent);
*/    margin-top: -30%;
    margin-bottom: 20%;
    -webkit-backdrop-filter: blur(13px);
    backdrop-filter: blur(13px);
}

@media only screen and (max-width: 1250px) {
    .bar {
        font-family: "Dancing Script";
        font-size: 250%;
        color: black;
        margin: 0;
        width: 90%;
        margin-top: 25%;
        margin-bottom: 50%;
        top: 30%;
        left: 0%;
        padding-top: 1%;
        background-image: linear-gradient(to right, red, orange);
        border: none;
        animation-name: land;
        animation-fill-mode: both;
        animation-duration: 1s;
    }
    #videolist4
    {
        font-size: 100%;
    }

    #videolist3,
    #videolist1,
    #videolist2 {
        padding-top: 4%;
        font-size: 139%;
        font-family: 'Myriad Pro Regular';
        background-image: linear-gradient(to right, black, rgb(23,23,23));
    }
    #FallButton,
    #SummerButton,
    #SpringButton {
        font-size: 250%;
        font-family: "Dancing Script";
        color: black;
        width: 90%;
        text-align: center;
        background-image: linear-gradient(to right, red, orange);
        border: none;
        transition: width 1s, font-size 1s;
    }

    body
    {
        background-attachment: scroll;
        background-size: auto;
        animation: none;
    }
}