* {
  margin: 0;
  padding: 0;
}
 
body {
    background-image: url('bannerkpomlantxiii.jpg');
    background-repeat: no-repeat;
    background-size: cover;
  background-color: #dcd;
  font-family: sans-serif;
}
 
.content {
  grid-area: content;
}
 
.footer {
  grid-area: footer;
  background: white;
}
 
.container {
  font-size: 1.5em;
  width: 100%;
  height: 100;
  height: 100vh;
  display: grid;
  grid-template-areas: 'sidebar' 'content' 'footer';
  grid-template-columns: 1fr;
  grid-template-rows: 30px 400px 250px;
}
 
.content,
.sidebar,
.footer {
  padding: 0.5em;
}
 
nav ul {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  text-align: center;
}
 
nav li {
  list-style: none;
  padding: 1em 0;
}
 
nav li a {
  color: white;
  font-weight: 700;
  opacity: 0.6;
  text-decoration: none;
  transition: 0.3s;
}
 
nav li a:hover {
  opacity: 1;
}
 
.hero {
  max-width: 30 px;
  margin: 0 auto;
  text-align: center;
}
 
.hero img {
  width: 200px;
}
 
.hero h1 {
  font-family: sans-serif;
  font-size: 2em;
  font-weight: 300;
  color: blue;
}
.hero h3 {
  font-family: sans-serif;
  font-size: 2em;
  font-weight: 300;
  color: blue;
}
 
.hero p {
  font-weight: 10;
  line-height: 1.3em;
  color: #98abad;
}
 
.action-btn {
  display: inline-block;
  text-decoration: none;
  color: white;
  font-weight: 700;
  background: #567bfb;
  padding: 0.5em 2em;
  border-radius: 60px;
  margin: 1em 0;
  transition: 0.3s;
}
 
 .action-btn2 {
  display: inline-block;
  text-decoration: none;
  color: white;
  font-weight: 300;
  background: #567bfb;
  padding: 0.5em 1em;
  border-radius: 30px;
  margin: 1em 0;
  transition: 0.3s;
}
 
footer ul {
  max-width: 640px;
  margin: 2em auto;
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: row;
}
 
footer ul li {
  list-style: none;
  align-self: flex-end;
}
 
footer ul li a {
  text-decoration: none;
  color: #c1c6ce;
}
 
footer ul li img {
  width: 25%;
}
 
footer p {
  font-size: 0.8em;
}
 
@media (min-width: 1040px) {
  .container {
    grid-template-areas: 'sidebar content' 'sidebar footer';
    grid-template-rows: 1fr auto;
    grid-template-columns: 30px 1f;
  }
 
  nav ul {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
 .sidebar {
 background: linear-gradient(to right bottom, orange, #ec38bc, #7303c0, cyan);   
 padding-top: 3em;
}
 
 
  .hero {
    text-align: left;
    margin: 2em 0;
  }
 
  .hero img {
    width: 200px;
    float: right;
  }
 
  .hero h1 {
    font-size: 3em;
  }
  
  .hero h3 {
    font-size: 3em;
  }
 
  .hero p {
    width: 60%;
  }
 
  footer ul {
    max-width: 900px;
    margin: 0 auto;
    padding: 1em 0;
  }
 
  footer ul li a img {
    width: 40%;
  }
}