@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600&display=swap');




/* Global */
:root {
    --primary-color: #3498ff;
}

html {
    direction: rtl;
    font-size: 62.5%;
    min-height: 100%;
}

body {
    width: 100%;
    font-family: Rubik;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Utilities */
.btn {
    display: inline-block;
    text-decoration: none;
    color: white;
    background: rgb(76,155,253);
    font-size: 3.6rem;
    padding: 1.5rem 8rem;
    border-radius: 1rem;
    margin: 0 2.5rem;
    transition: 300ms;
}

.btn-secondary {
    background: rgb(16, 192, 0);
}

.btn:hover {
    background: rgb(39, 119,199);
}

.btn-secondary:hover {
    background: rgb(49, 144, 53);
}