/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

/* style.css */

body {
    background-color: red;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    text-align: center;
    padding: 20px;
}

.nav ul {
    list-style-type: none;
    padding: 0;
}

.nav ul li {
    display: inline;
    margin: 0 0px;
}

.nav a {
    color: white;
    text-decoration: none;
}

h1, h2, h3 {
    text-align: center;
}

.main {
    text-align: center;
    margin: 20px;
}

.avatar {
    display: block;
    margin: 20px auto;
    max-width: 200px; /* Adjust as needed */
    border-radius: 50%; /* Optional for circular images */
}

footer {
    text-align: center;
    margin-top: 20px;
}