/* The navigation bar */
@import url('https://fonts.googleapis.com/css?family=Maven+Pro&display=swap');
.navbar {
    overflow: hidden;
    background-color: #333;
    position: fixed;
    /* Set the navbar to fixed position */
    top: 0;
    left: 0;
    /* Position the navbar at the top of the page */
    width: 100%;
    /* Full width */
}

/* Links inside the navbar */
.navbar a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

/* Change background on mouse-over */
.navbar a:hover {
    background: #1b5e20;
    color: black;
}

/* Main content */
.main {
    width: 100%;
    margin-top: 50px;
    /* Add a top margin to avoid content overlay */
}

.text {
    width: 50%;
    float: left;
}

.screenshots {
    width: 20%;
    float: right;
}

body {
    font-family: 'Maven Pro', sans-serif;
}

h1 {
    text-align: center;
    color: #1b5e20;
}

a {
    color: #1b5e20;
}