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

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

.classlink:link,
.classlink:active,
.classlink:visited,
.classlink:hover {
    color: white;
    text-decoration: none;
}

body
{
    background-color: white; 
    background-image: linear-gradient(to right, black, black);
    margin: 0; 
    width: 100%;
    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%;
    }
}

.bar1 {
    font-family: "Dancing Script";
    font-size: 300%;
    color: white;
    margin: 0;
    width: 50%;
    border: solid;
    border-color: yellow;
    border-radius: 100px;
    padding-top: 1%;
    margin-top: 3%;
    left: 0%;
    background-image: url("../csSIDesigns/CS211_SI_CDF_background.png");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    animation-name: land;
    animation-fill-mode: both;
    animation-duration: 1s;
}

#choose {
    background-color: black;
    width: 80%;
    border-radius: 100px;
    margin-top: 3%;
}

@keyframes land {
    0% {
        border-color: yellow;
        margin-top: 0%;
        padding-top: 20%;
    }
}

@-webkit-keyframes land {
    0% {
        border-color: yellow;
        margin-top: 0%;
        padding-top: 20%;
    }
}

.option {
    font-size: 700%;
    font-family: "Dancing Script";
    width: 100%;
    text-align: center;
    border: solid;
    border-color: yellow;
    border-radius: 100px;
    transition: all 0.3s;
    transition-timing-function: ease;
    animation-name: welcomeMove;
    animation-duration: 0.7s;
    animation-fill-mode: both;
}

.option:hover {
    transform: scale(0.9);
    background-color: yellow;
    background-image: url("../csSIDesigns/CS211_SI_CDF_background.png");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

@keyframes welcomeMove {
    0% {
        opacity: 0;
        padding-bottom: 70%;
        padding-top: 40%;
        transform: rotateZ(147deg);
    }
}

@-webkit-keyframes welcomeMove {
    0% {
        opacity: 0;
        padding-bottom: 70%;
        padding-top: 40%;
        transform: rotateZ(147deg);
    }
}

.para3 {
    border-radius: 50px;
    background-color: black;
    font-size: 200%;
    font-family: "Dancing Script";
    color: white;
    padding: 30px;
    margin-top: 10%;
    padding-bottom: 1%;
    background-image: linear-gradient(147deg, black, black, black, gold, gold);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

#CS {
    color: white;
    font-size: 175%;
    font-family: "Dancing Script";
    margin: 0;
    padding: 1%;
    margin-bottom: 5%;
}

#SI {
    color: white;
    font-size: 150%;
    font-family: "Dancing Script";
    margin: 0;
    margin-bottom: 10%;
    margin-bottom: 5%;
}

#sub2 {
    background-color: black;
    border-radius: 40px;
    padding: 4%;
}

@media only screen and (max-width: 1250px) {
    .bar1 {
        border: none;
        padding-bottom: 0.01%;
        font-size: 200%;
        width: 90%;
        background-image: linear-gradient(to right, black, black);
    }
    #choose {
        background-color: transparent;
        width: 80%;
        color: yellow;
        border-radius: 100px;
        margin-top: 3%;
    }
    .para3 {
        background-image: linear-gradient(to right, black, black);
        border: none;
        color: yellow;
        /*-webkit-backdrop-filter: blur(13px);
        backdrop-filter: blur(13px);
        background-color: rgb(13,13,13,0.4);*/
        border-radius: 25px; 
        /*font-family: "Didact Gothic";*/
    }
    #CS {
        font-size: 125%;
        font-family: "Dancing Script";
        color: yellow;
    }
    #sub2 {
        font-size: 64%;
        background-color: transparent;
        border-radius: 25px;
        box-shadow: 0px 0px 13px yellow;
        color: yellow;
    }
    body
    {
        background-attachment: scroll;
        background-size: auto;
        animation: none;
    }
}