@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    height: 100vh;
}

.navbar {
    background-color: #e5e5e5;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav li {
    margin: 0 35px;
}

nav a {
    color: #353535;
    text-decoration: none;
    padding: 15px 0;
}

nav a:hover {
    color: white;
}

nav a:active {
    font-weight: bold;
}

.menu-icon {
    width: 50px;
}

.left-column {
    width: 30%;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(images/uebermich.PNG);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    height: 100%;
    top: 50px; /* Adjusted to account for the fixed navbar */
}

.right-column {
    width: 70%;
    margin-left: 30%;
    padding: 70px 20px 20px; /* Adjusted to account for the fixed navbar */
    overflow-y: scroll;
    background-color: #A19F9C;
}

.text {
    font-size: 10px;
    margin-top: 0px;
    text-align: left;
    padding-top: 10px;
    padding-left: 250px;
    padding-right: 250px;
    padding-bottom: 60px;
}

h1 {
    text-align: center;
    font-size: 50px;
    font-family: "Patua One", serif;
}

p {
    font-family: "Patua One", serif;
    font-size: 18px;
}
