/* Reset styles for all elements */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Titillium Web', sans-serif;
}

/* Style for header element */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.header a img {
    max-height: 80px;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

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



nav ul li:last-child {
    margin-right: 10px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 24px;
    font-weight: 300;
}

nav ul li a:hover {
    color: #b0663bc6;
    transition: all 0.3s ease;
    transform: scale(1.2);
}

nav ul li a.current {
    color: rgba(190, 123, 75, 0.91);
    font-weight: 600;
}

body {
    max-height: 100vh;
    max-width: 100vw;
}

div {
    display: flex;
    flex-direction: row-reverse;
    width: 90vw;
    max-height: 90vh;
    margin: 10px 10px;
    padding: 0 20px;
}
/* I want my image to be styled on the left with rounded corners */

.self-portrait {
    display: flex;
    border-radius: 25px;
    border-color: aliceblue;
    max-height: 80vh;
    padding: 10px 10px;
    margin: 0px 10px;
}

.about-text p {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 18px;
    margin: 30px 80px;


}



/* Style for footer element */
footer {
    width: 100%;
    position: fixed;
    bottom: 0;
    background-color: white;
    padding: 10px;
    text-align: center;
}

footer p {
    color: #6e6e6e;
}