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

#walink:hover {
    color: white;
    text-decoration: none;
}

body {
    width: 100%;
    color: yellow;
    margin: 0;
    background-color: black;
    background-image: url("../csSIDesigns/wabackground.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%;
    }
}

#weeklyA {
    font-size: 555%;
    font-family: "Comfortaa";
    padding-top: 40%;
    padding-bottom: 100%;
    color: white;
    animation-name: welcomeMove;
    animation-duration: 0.5s;
    animation-fill-mode: both;
}

@keyframes welcomeMove {
    0% {
        padding-top: 30%;
        transform: scale(2.4);
    }
    100% {
        padding-top: 40%;
    }
}

@-webkit-keyframes welcomeMove {
    0% {
        padding-top: 30%;
        transform: scale(2.4);
    }
    100% {
        padding-top: 40%;
    }
}

#OOPButton,
#ITPButton {
    font-size: 400%;
    font-family: "Dancing Script";
    width: 50%;
    text-align: center;
    border: solid;
    border-color: black;
    padding: 15px;
    border-radius: 100px;
    text-shadow: 0px 0px 10px white;
    box-shadow: 0px 0px 10px grey;
    color: white;
    transition: width 1s, font-size 0.5s, color 0.5s, box-shadow 0.5s;
    background-color: black;
}

#OOPButton:hover,
#ITPButton:hover {
    font-size: 400%;
    color: white;
    text-shadow: 0px 0px 10px white;
    box-shadow: 0px 0px 20px white;
}

#weeklyCS211,
#weeklyCS311 {
    border-radius: 60px;
    border: none;
    border-color: black;
    background-color: transparent;
    background-image: linear-gradient(147deg,yellow, aqua);
    color: white;
    padding: 30px;
}

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

body {
        background-attachment: scroll;
        background-size: auto;
        animation: none;
}
#weeklyCS211,
#weeklyCS311 {
    font-size: 100%;
}
#OOPButton,
#ITPButton {
    color: white;
}

}


