@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');

* {
    padding: 0;
    margin: 0;

    font-family: 'Roboto';
}

button {
    font-family: 'Roboto';
}

body {
    font-family: 'Roboto';
}
.home-link {
    display: inline-block;
    margin-bottom: 20px;
    padding: 10px 15px;
    background-color: #d40000;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
    border: 1px solid #F2003C;
}
.home-link:hover {
    cursor: pointer;
    background-color: white;
    color: #F2003C;
    
    border: 1px solid #F2003C;
}