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

:root{
    --primary-color: #3498db;
    --secondary-color: #2ecc71;
    --background-color: orange;
    --text-color: #00008b;  
    --text2-color:black;  
    --link-color: #00008b;
    --price-color: orange;
    --footer-background: black;   
    --footer-text-color: orange;
    --font-family: 'Cairo', sans-serif;
    --font-size: 16px;
    --border-radius: 4px;
    --active-scale: 1.05;
    --transition-duration: 0.3s;
    --box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
    --hover-bg-color: #6a5d88;
}

body{
    font-family: var(--font-family);
    font-size: var(--font-size);
    color: var(--link-color);
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
a {
    text-decoration: none;
}
p{
    align-items: center;
    text-align: center;
}