/* Import Poppins font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400&display=swap');

/* General Page Style */
body, html {
    margin: 0;
    height: 100%;
    background-color: #0B3142;
    font-family: "Poppins", sans-serif; /* Updated font-family correctly */
    color: white; /* Set text color to white */
    padding: 20px; /* Add padding for space from sides */
    padding-bottom: 20px;
}

/* Link Styles */
a {
    color: #C9BA5B; /* Set link color to yellow */
    text-decoration: none; /* Remove underline from links */
}

a:visited {
    color: #8c7f27; /* Set clicked link color to orange */
}

a:hover {
    text-decoration: underline; /* Add underline to links on hover */
}