#wrapper{
    width: 800px;
    height: auto;
    margin: auto;
    padding-bottom: 10px;
    padding-top: 2px;
    }
    .title{
    height: 50px;
    color: #2586B8;
    font-weight: bold;
    font-size: 24px;
    margin-top: 250px;
	text-align: center;
    }
    .cm{
    text-align: center;
    font-size: 18px;
    color:red;
    text-transform: uppercase;
    margin-top: 25px;
    }
	.aller{
		font-size:24px;
	}
    .loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-right: 8px solid green;
      border-bottom: 8px solid red;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    margin-left: 25%;
    animation: spin 2s linear infinite;
    }

    @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
    }