#navbar {
    background-color: aliceblue;
    display: flex;
    justify-content: space-around;
    padding: 30px;
}


#navbar>div>a {
    text-decoration: none;
    color: black;
    font-size: 25px;
    font-weight: bold;
}
 #parent {
    width: 50%;
    margin: auto;
    margin-top: 200px;
    text-align: center;
    background-color: lightblue;
    padding: 40px;
 }



#cardCreate {
    margin: 40px auto;
    border-radius: 10px;
    padding: 10px;
    width: 80%;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px, rgb(51, 51, 51) 0px 0px 0px 3px;
}

#cardCreate>div {
    display: flex;
    justify-content: space-between;
}

#cardCreate>div>div:first-child {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}


#cardCreate>button {
    background-color: green;
    font-weight: bold;
    border-radius: 5px;
    border: none;
    padding: 8px;
    color: white;
    margin-left: 90%;
    margin-bottom: 8px;
}


