body {
   background-color: lightblue;
}

#square {
    outline: 2px solid black;
    width: max-content;
    height: 50px;
    background-color: rgb(244, 250, 213);
    border-radius: 10px;
}

.shapeb {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 150px;
    height: 150px;
    border-radius: 100px;
    background-color: aliceblue;
    font-size: 30px;
}

.loc {
    display: flex;
    justify-content: center;
    height: 100px;
    margin-top: 200px;
}

#eq {
    padding: 0px;
    border-radius: 100px;
    width: 98%;
    font-size: 50px;
	dispay: flex;
}

#shape {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 150px;
    height: 150px;

    padding: 0;
    margin: 0;
    border: 1px solid gray;

    line-height: 1;

    border-radius: 50%;
    background-color: aliceblue;
    opacity: 0.5;
    font-size: 100px;
    margin-top: 100px;
}

.cont {
    display: flex;
    justify-content: center;
}

#shape:hover {
    transition: opacity 0.6s ease-in-out;
    outline: solid 5px yellow;
    opacity: 1;
}

