/* style.css */
#rectangle {
    width: 100px;
    height: 50px;
    background-color: blue;
    margin-bottom: 10px;
}

#circle {
    width: 50px;
    height: 50px;
    background-color: red;
    border-radius: 50%;
}

