body {
    font-family: 'Chalkduster', cursive; /* Use a chalk-style font if available */
    margin: 0;
    padding: 0;
    background-color: #000; /* Chalkboard background color */
}

/* General Text & Sections */
header, nav, section, footer {
    color: #fff; /* Chalk color */
}

header, nav {
    background-color: #222; /* Darker color for header and navigation */
}

/* Navigation */
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: #fff;
}

section {
    padding: 20px;
}

/* Footer */
footer {
    background-color: #222;
    text-align: center;
    padding: 10px;
    bottom: 0;
    width: 100%;
}

/* Text effect for chalk-like appearance */
h1, h2, p, a {
    text-shadow: 2px 2px 5px #000;
}

/* Chalkboard background texture */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('chalkboard-texture.jpg'); /* Replace with your chalkboard texture image */
    opacity: 0.3; /* Adjust the opacity to your preference */
    pointer-events: none; /* Allow clicks to pass through the pseudo-element */
    z-index: -1; /* Place behind the content */
}

/* Social Media Links */
.social a {
    font-size: 30px;
    color: #39FF14;
    border-style: groove;
    border-color: grey;
    padding: 10px;
    margin: 10px;
    border-radius: 6px;
    display: inline-block;
}

/* Social Media Links on mouse hover */
.social a:hover {
    background-color: darkred;
    color: white;
    transition: background-color 0.6s ease-out, color 0.6s ease-out;
}

/* Rows */
.row {
    display: flex;
    flex-wrap: wrap;
}

.col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
}

/* Profile Image */
img.me {
    padding: 25px;
    margin: 25px;
    border-radius: 9px;
    max-width: 15%;
    height: auto;
    opacity: 0.6;
}

.for-me {
    line-height: 1.5;
}

/* Donation Button */
img.donate {
    padding: 25px;
    margin: 5px;
    border-radius: 9px;
    width: 400px;
    height: auto;
}

/* Top Logo */
.logo {
    max-width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 1000px;
    height: 400px;
}
