*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}

html,body{
    width: 100%;
    height: 100%;
}

#main{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shape{
    width: 200px;
    height: 200px;
    border: 1px solid black;
    justify-content: center;
    align-items: center;
    display: flex;
    margin-top: 10px;
    margin-left: 10px;
}

#circle{
    border-radius: 50%;
}

#diamond{
    rotate: 45deg;
    margin-top: 50px;
}

#diamond h2{
    rotate: -45deg;
}

#square:hover{
    background-color: red;
}

#diamond:hover{
    background-color: aqua;
}

#circle:hover{
    background-color: rgb(89, 255, 0);
}

