/* CSS Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {

    font-size: 100%;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

/* Remove list styles (optional) */
ol, ul {
    list-style: none;
}

/* Remove hyperlink text decoration (optional) */
a {
    text-decoration: none;
}
/* end CSS Reset */

body {
    font-family: 'Ubuntu', sans-serif; /* Use your preferred font family */
    line-height: 1.6; /* Adjust line height for better readability */
    margin: 0;
    padding: 20px;
    background-color: #f7f7f7; /* Example background color */
    color: #333; /* Example text color */
    
}

button, a.button-style {
    cursor: pointer;
    text-decoration: none;
    font-family: 'Popin', Arial, sans-serif; 
}

.content-container {
    padding: 20px; /* Adjust the value as needed */
}

h2 {
    font-size: 18px;
    font-weight: 500;
}

.center-text {
    text-align: center;
}

.highlighted-text {
    font-weight: bold;
    background-color: aqua;
    display: inline-block;
    padding: 2px 5px;
    transform: rotate(2deg);
}


/* Style for LinkedIn link */
.linkedin-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0077B5; /* LinkedIn blue */
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 10px;
}

.linkedin-link:hover {
    background-color: #005E8B; /* Darker shade on hover */
}
