ul {
    list-style-type: "✔ ";
}

.contact-form {
 	color: red !important;
}  

/* Custom buttons */
.button {
	display: flex;
    align-items: center;
    justify-content: center;    
    width: 200px;
    height: 50px; 
    padding: 6px 12px 6px 12px; 
    border-radius: 14.5px;
    border: 1px solid #1E1E1E;
    color: #0000CC;
    font-family: 'Krub', sans-serif;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.1s ease;
    box-shadow:
        1px 1px 0 #1D1E18,
        2px 2px 0 #1D1E18,
        3px 3px 0 #1D1E18,
        4px 4px 0 #1D1E18,
        5px 5px 0 #1D1E18;
}

.button:hover {
    transform: translate(2px, 2px);
    box-shadow:
        1px 1px 0 #1D1E18,
        2px 2px 0 #1D1E18,
        3px 3px 0 #1D1E18;
}

.button:active {
    transform: translate(4px, 4px);
    box-shadow:
        1px 1px 0 #1D1E18;
}
/* Position buttons */
.center-button {
    margin-left: auto;
    margin-right: auto;
}

/* Colored buttons */
.yellow-button {
    background-color: #F4E04D;
}

.blue-button {
    background-color: #0000CC;
}

.mint-button {
    background-color: #CDF7F6;
}

.orange-button {
	background-color: #E8871E;   
}
   