*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

main {
  line-height: 1.7;
  padding: 20px;
  flex: 1;
  border-radius: 20px;
  max-width: none;
  margin: 0;
  text-align: left;
}

body {
  background-color: #040348;
  color: #f4edea;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Georgia", "Times New Roman", serif;
}

a {
  text-decoration: none;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  align-items: center;
}

nav a {
  color: #c9d1d9;
  font-size: 15px;
  padding: 5px 10px;
  border-radius: 4px;
}

header,
footer {
  background-color: #191716;
  padding: 25px 32px;
  text-align: center;
}

h1 {
  display: inline;
}

.content-wrapper {
  display: flex;
  gap: 5px;
  align-items: stretch;
  min-height: 70vh;
}

.text-column {
  flex: 2;
}

.image-column {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-column img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}
