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

#dlink:hover {
    color: aqua;
    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: aqua;
    text-decoration: none;
    box-shadow: 0px 0px 10px aqua;
    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 {
    width: 100%;
    color: yellow;
    margin: 0;
    background-image: url("../csSIDesigns/CS211_SI_Note_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%;
    }
}

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

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

@keyframes welcomeMove {
    0% {
        opacity: 0;
        padding-top: 0%;
    }
}

@-webkit-keyframes welcomeMove {
    0% {
        opacity: 0;
        padding-top: 0%;
    }
}

#notes1 {
    margin-top: 20%;
    border-radius: 50px;
    border: none;
    background-color: black;
    font-size: 200%;
    font-family: "Comfortaa";
    color: white;
    padding: 30px;
    width: 100%;
    margin-bottom: 25%;
    text-align: center;
    -webkit-backdrop-filter: blur(13px);
    backdrop-filter: blur(13px);
    background-color: rgb(44,44,44,0.4);
}

#outerNotes1 {
    background-color: transparent;
}

@media only screen and (max-width: 1250px) {


#title
{
    border-radius: 74px;
    margin-left: 17%;
    margin-right: 17%;
    font-size: 44%;
    -webkit-backdrop-filter: blur(13px);
    backdrop-filter: blur(13px);
    background-color: rgb(44,44,44,0.1);
    color: white;
}
#notes1 {
    font-size: 150%;
}

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

}