/* Import Poppins Regular from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400&display=swap');

/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
   
    
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    
}

/* Paragraphs */
p {
    font-family: 'Poppins', sans-serif;

}

/* Links */
a {
    font-family: 'Poppins', sans-serif;
   
}

/* a:hover {
    text-decoration: underline;
} */

/* Buttons */
button, .button {
    font-family: 'Poppins', sans-serif;
   
}



/* Form Inputs */
input, textarea, select {
    font-family: 'Poppins', sans-serif;
    
}

/* Header */
.header {
    font-family: 'Poppins', sans-serif;
    
}

/* Footer */
.footer {
    font-family: 'Poppins', sans-serif;
   
}