/* Updated CSS file with improved readability and custom designs */

body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    margin: 0;
    padding: 0;
}

header {
    background-color: #004466;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 2em;
    font-weight: bold;
}

.container {
    width: 80%;
    margin: auto;
    background: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

h2 {
    color: #005580;
    border-bottom: 2px solid #005580;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

p, li {
    font-size: 1.1em;
    line-height: 1.6;
}

ul {
    list-style-type: square;
}

.footer {
    background-color: #004466;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
}

/* Custom Hobby Icons */
.hobbies {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.hobby-icon {
    width: 100px;
    height: 100px;
    background-size: contain;
    background-repeat: no-repeat;
}

.squash {
    background-image: url('squash-racquet.png');
}

.guitar {
    background-image: url('guitar.png');
}

.robotics {
    background-image: url('robotics.png');
}
