main{
    section{
        display: flex;
        justify-content: center;
        h2{
            background-color: orangered;
            border: 8px solid #0009;
            border-radius: 50%;
            color: #fff;
            font-size: 2.2rem;
            filter: blur(6px) grayscale(1);
            transition: all 0.2s ease-in;
            transform: scale(0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            height: 250px;
            padding: 1rem;
            width: 250px;
            &:hover {
                filter: blur(0px) grayscale(0);
                transform: scale(1);
            }
        }
    }
}