#notice{
	height: 78vh;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;

    .title{
    	font-size: 30px;
    	display: flex;
    	align-items: center;
	    flex-wrap: wrap;
	    justify-content: center;
	    text-align: center;
	    color: #073396;
    	font-weight: 500;

    	img{
		    width: 25px;
    		margin-right: 15px;
    	}
    }

    .content{
    	text-align: center;
    	margin: 30px 0;
	    line-height: 1.8em;
    }

    .button{
    	display: inline-block;
        border: 2px solid #74b32d;
	    color: #74b32d;
	    font-size: 17px;
	    font-weight: 500;
	    padding: 0.8em 2em;
	    border-radius: 30px;
	    line-height: 1em;
    }

    @media only screen and (max-width: 992px){
	    padding: 0 7%;

    	.title{
    		font-size: 24px;

    		img{
			    width: 20px;
    		}
    	}

    	.content{
		    font-size: 13px;
    	}

    	.button{
    		font-size: 15px;
    	}
    }
}