#blank{
	width: 75vh;
	height: 75vh;
	margin: 5vh auto;
	display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid;
    border-radius: 50%;
    border: double 1px transparent;
    background-image: linear-gradient(#e6e6e6, #e6e6e6), radial-gradient(circle at top left, #12c0be,#9fc628);
    background-origin: border-box;
    background-clip: content-box, border-box;
    font-weight: bold;

    .blank{
    	font-size: 18px;
    	text-align: center;

    	&__title{
    		font-size: 30px;
    		margin-bottom: 12px;
		    background: linear-gradient(to right, #12c0be, #9fc628);
		    -webkit-background-clip: text;
		    -webkit-text-fill-color: transparent;
    	}
    }

    @media only screen and (max-width: 400px){
	    margin-left: -8%;
	    width: 65vh;
		height: 65vh;

		.blank{
			font-size: 15px;

			&__title{
	    		font-size: 26px;
	    	}
		}
    }
    @media only screen and (min-width: 400px) and (max-width: 992px){
    	max-width: 450px;
    	max-height: 450px;
	    margin: 20vh auto;
    }
}