body {
        font-family: 'Montserrat', Tahoma, Verdana, sans-serif;
        font-weight: 400;
        font-size: 1rem;
        background-color: #f0f0f0; /* Light gray background */
        line-height: 1.5; /* spacing between lines of text to improve layout, less crowded*/
    }
.container-navbar {
        display: flex;
        justify-content: space-between;
        background: #552b15; /* color to match the background of my picture (dark wood panelling) */
    }
.navigation {
        display: flex;
        flex-flow: row wrap;
        justify-content: flex-end;
        
        list-style: none;
        margin: 0; 
        
    }
.navigation a {
        text-decoration: none;
        display: block;
        padding: 1em;
        color: white;
        }

.navigation a:hover {
        background: #1565C0;
    }
.hero-section {

        display: grid;
        grid-template-columns: 1.5fr 1fr;
        align-items: center;
        text-align: justify;
        gap: 10px;
        padding: 20px;
        background-color: #eeddca; /* Light brown - warm background */
    }

img {
        margin: 50px;
        border-radius: 75px; /* Adjust px for more or less rounding */
        box-shadow: 0 4px 8px rgba(55, 0, 0, 0.2); /* Subtle shadow for depth */
    }

.icon-row {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        justify-content: space-around;
        justify-items:center;
        gap: 40px;
        padding: 20px;
    }

.attribute-row {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        justify-items:center;
        gap: 40px;
        padding: 20px;
    }

.grid-item {
        text-align: justify;
        
    }
.icon-square {
        width: 3rem;
        height: 3rem;
        fill:#552b15
        }
