.navbar {
        background-color: lightpink;
        width:100%;
        margin:0px;
        margin-bottom: 100px;
        list-style-type: none;
        padding:0px;
        position:fixed;
        top:0px;
        left:0px;
        }
            
.navText {
color: mediumpurple;
margin: 12px;
font-size: 28px;
font-family: cursive;
}

.active {
    background-color:aliceblue;
}

body {
    background-color: darkblue;
}

.container {
    flex-wrap: wrap;
    width: 88%;
    position: relative;
    margin: 45px;
    display:flex;
    justify-content: center;
}

.card {
    background-color: white;
    width: 440px;
    border-width: 6px;
    border-style: solid;
    border-color:cyan;
    border-radius: 8px;
    position: relative;
    margin: 10px;
    margin-top: 4%;
    margin-bottom: 4%;
    box-shadow: 10px 10px 5px black;
}

.card-image {
    width: 100%;
    border-bottom: 8px solid black;
    height: 150px;
    background-size:cover;
    border-radius:8px 8px 0 0;
}

.pic1 {
    background-image:url(toDoListPic.jpeg);
}

.pic2 {
    background-image:url(teslapic.png);
}

.pic3 {
    background-image:url(scoobyDoo.jpeg);
}

.link {
    background-color:black;
    color: cyan;
    font-size: 20px;
    font-weight: bold;
    display: block;
    text-align: center;
    margin: 10px 15px;
}

span {
    text-align: center;
    margin-top: 12px;
    margin-bottom: 12px; 
}

.card p {
    text-align: center;
    font-size: 18px;
}



