.body {
    background-image: url('/../cwd/unit-1-hello/assets/galaxy-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


.top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(191, 148, 231);
    padding: 10px 20px;
    margin-bottom: 60px;
    border: 2px solid white;
}

.logo-container {
    display: contents;
    text-decoration: none;
    color: inherit;
    gap: 15px;
}

.logo {
    max-width: 300px;
    max-height: 300px;
    height: auto;
    width: 40%;
}

h1 {
    margin: 0;
}

h2 {
    align-content: center;
    color:rgb(50, 236, 255);
}

.sub-heading {
    text-align: center;
    justify-content: center;
    height: 5rem;
    text-shadow: yellow;
}

.container {
  display: grid;
  grid-template-areas:
    "header header"
    "menu content"
    "footer footer";
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  grid-gap: 20px;
  grid-auto-rows: .005fr;
}

.left-container, .right-container {
    flex: 1;
    padding: 1rem;
    background-color: rgb(191, 148, 231);
    margin-bottom: 5rem;
}

.container div.header {
  display: grid;
  gap: 20px;
  padding-right: 1rem;
  text-align: center;
}

.header__image {
    height: 100%;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}
.container div.menu {
  grid-area: menu;
  text-align: center;
  margin-top: 1rem;
}

.container div.content {
  grid-area: content;
  display: block;
  text-align: center;
}

.container div.footer {
  grid-area: footer;
  text-align: center;  
}

.footer__image {
    height: 100%;
    width: 80%;
}