/*
    Well, I think when you read this, you're curious about the code of this website, right?

    You know... I'm not a professional developer, I'm just a student who loves coding and learning new things.

    So, I'm sorry if my code is not good enough, but I'm trying my best to make it better.

    If you have any suggestions or feedback, please let me know. I'm willing to listen and learn from you.

    Thank you for visiting my code. I hope you have a great day! 😊
*/

/* Font assets/font */
@font-face {
    font-family: 'Google-Sans';
    src: url('../font/GoogleSans-Regular-v1.27.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Google-Sans';
    src: url('../font/GoogleSans-Bold-v1.27.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Google-Sans';
    src: url('../font/GoogleSans-Italic-v1.27.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Google-Sans';
    src: url('../font/GoogleSans-BoldItalic-v1.27.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}

/* Medium Italic */
@font-face {
    font-family: 'Google-Sans';
    src: url('../font/GoogleSans-MediumItalic-v1.27.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}

/* Medium */
@font-face {
    font-family: 'Google-Sans';
    src: url('../font/GoogleSans-Medium-v1.27.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

/* bold i */
@font-face {
    font-family: 'Google-Sans';
    src: url('../font/GoogleSans-BoldItalic-v1.27.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}

* {
  font-family: 'Google-Sans', sans-serif;
  scroll-behavior: smooth;
}