
.nav {
  list-style-type: none;
  margin: 0;
  padding: 0;
  background-color: #111111;
  display: flex;
}

.nav li a {
  display: block;
  color: white;
  padding: 14px 16px;
  text-decoration: none;
}

.nav li a:hover {
  background-color: #333333;
}

body {
  font-family: "Jura", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  margin: 0;
}

/* rn header is not resizing automatically */
.header {
    position: relative;
    text-align: center;
    color: white;
    width: 100%;
}

/* position relative and absolute act like parent and child, absolute can overlay */
h1 {
    position: absolute;
    left: 50%; 
    transform: translateX(-50%);
    bottom: -280px;
    font-family: Arial, Helvetica, sans-serif;
    font-style: normal;
    font-size: 300px;
    text-transform: uppercase;
}

/* flexbox is a way of organizing, reminds me of grids but also thats a seperate way */
.two-columns {
    display: flex;
    gap: 30px;
    flex-direction: row;
    justify-content: space-between;
}

.left-column {
    max-width: 1000px;
    min-width: 50px;
    margin-left: 300px;
    margin-top: 50px;
}

.right-column {
    max-width: 550px;
    min-width: 50px;
    margin-right: 300px;
    margin-top: 50px;
}

.bolder {
    font-weight: bolder;
}

.one-column {
    max-width: 1000px;
    min-width: 100px;
    text-align: left;
    margin: auto;
    padding: 50px;
}

.big-img {
  max-width: 100%;
  max-height: auto;
}

.big-mid-img {
  max-width: 100%;
  max-height: auto;
  margin-top: 50px;
  margin-bottom: 50px;
}

.internet {
    max-width: 500px;
    min-width: 50px;
    margin-left: 300px;
    margin-top: 50px;
}

