
body {
  
  margin: 0;
  background-color: black;
  color: white;
  font-family: serif; 
}

.container {
  display: flex;
  flex-direction: column;
  height: 100vh;
  background: url('background.png') no-repeat center center;
  background-size: cover;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: black;
}

.logo img {
  height: 120px;
}

nav {
  display: flex;
  gap: 40px;
  font-size: 24px;
}

nav a {
  text-decoration: none;
  color: white;
  text-shadow: 1px 1px 2px black;
}

.socials {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.socials a {
  display: block;
  width: 30px;
  height: 30px;
  background-color: black;
  color: white;
  text-align: center;
  line-height: 30px;
  font-family: monospace;
  font-size: 16px;
  border: 1px solid white;
}

main {
  flex: 1;
  display: flex;
  padding: 10px;
  gap: 10px;
}

.column {
  background-color: rgba(0, 0, 0, 0.5);
}

.left, .right {
  width: 200px;
}

.center {
  flex: 1;
}
