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

#dlink:hover {
    color: yellow;
    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: yellow;
    text-decoration: none;
    box-shadow: 0px 0px 10px yellow;
    border-radius: 47px;
    padding: 2%;
    cursor: none;
}

#item {
    padding: 1%;
    transition: transform 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_CDF_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: 30%;
    border-radius: 100px;    
    animation-name: land;
    animation-fill-mode: both;
    animation-duration: 1s;
    -webkit-backdrop-filter: blur(13px);
    backdrop-filter: blur(13px);
    background-color: rgb(44,44,44,0.1);
}

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

@-webkit-keyframes land {
    0% {
        opacity: 0.1;
        margin-top: 0%;
    }
}

#CDFlist1 {
    font-size: 200%;
    font-family: 'Myriad Pro Regular';
    width: 100%;
    text-align: center;
    padding: 1%;
    border-radius: 75px;
    margin-top: 10%;
    margin-bottom: 50%;
    -webkit-backdrop-filter: blur(13px);
    backdrop-filter: blur(13px);
    background-color: rgb(44,44,44,0.4);
}

@media only screen and (max-width: 1250px) {
    body
    {
        background-attachment: scroll;
        background-size: auto;
        animation: none;
    }
    
    .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, yellow, lime);
        border: none;
        animation-name: land;
        animation-fill-mode: both;
        animation-duration: 1s;
    }
    #CDFlist1 {
        font-size: 150%;
        font-family: 'Myriad Pro Light';
        background-image: rgb(13,13,13);
    }
}