/* Reset default styles */
* {
  margin: 20;
  padding: 20;
  box-sizing: border-box;
}

/* Body styles */
body {
  font-family: 'Courier New', Courier, monospace;
  background-color: #2c2c2c;
  color: black;
  padding: 20px;
  background-image: url("/Users/williamdean/Pictures/Background.png");
  background-repeat: no-repeat;
  background-size: cover;
}

/* Header styles */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 400px;
  height: auto;
}


.text-container {
  width: 50%;
  float: left; /* to make sure the container doesn't take up the full width */
}

p {
  color: black;
  font-family: monospace;
  text-align: left;
}

nav {
  display: flex;
  justify-content: center;
  font-size: 20px; /* Adjust the font size as desired */
}

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

nav ul li {
  margin: 0 10px;
}

nav ul li a {
  text-decoration: none;
  color: black;
  font-weight: bold;
}

/* Main styles */
main {
  display: flex;
  flex-direction: column;
  align-items: left;
  padding: 80px;
}

h1 {
  font-size: 48px;
  margin-bottom: 20px;
  text-align: center;

}

p {
  font-size: 24px;
  margin-bottom: 20px;
}

.video-container {
  display: flex;
  margin-bottom: 50px;
}

.video {
  flex: 1;
  margin-right: 20px;
}

.description {
  flex: 1;
}

.description h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
