/* Font Face Declarations */
@font-face {
    font-family: 'amgad';
    src: url('fonts/Alexandria-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'amgadt';
    src: url('fonts/Alexandria-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: 'amgad', sans-serif;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

a:hover {
    opacity: 0.8;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
}

button:hover {
    opacity: 0.9;
}
