/* Header Style */
header {
  background-image: url('https://i.pinimg.com/736x/e7/3a/59/e73a591b4b4ed69834fc0dbb24b50f5c.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  width: 50%;
  border-radius: 5px;
  box-shadow: 0px 4px 4px black;
}

.main_title{
  display: inline-block;
}

header h1{
  font-size: 2.5em;
  font-weight: normal;
}

#logo, header h1
{
  display: inline-block;
  margin-bottom: 0;
}

header h2{
  font-size: 1.1em;
  margin-top: 0;
  font-weight: normal;
}

/* Navigation Style */
nav{
  display: inline-block;
  width: 50%;
  text-align: right;
}

nav li{
  display: inline-block;
  margin-right: 20px;
}

nav a{
  font-size: 1.5em;
  color: black;
  padding-bottom: 5px;
  text-decoration: none;
}

nav a:hover{
  color: darkgray;
  border-bottom: 3px solid chartreuse;
}

/* Banner Style */
.banner_image{
  margin-top: 10px;
    height: 400px;
    border-radius: 5px;
    background-color: #DAD4C9;
    background: url('https://i.pinimg.com/1200x/ab/7b/fa/ab7bfab2f2c17c4ad47d3d3edc1a9a94.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    width: 50%;
    position: relative;
    box-shadow: 0px 4px 4px black;
    margin-bottom: 10px;
}

.banner_des{
  position: absolute;
  bottom: 0;
  border-radius: 0px 0px 5px 5px;
  width: 98.5%;
  height: 35px;
  background-color: rgb(24,24,24);
    opacity: 0.9;
  color: aliceblue;
  padding-top: 15px;
  padding-left: 15px;
  font-size: 20px;
}

.redbutton{
  display: inline-block;
  height: 25px;
  position: absolute;
  right: 10px;
  bottom: 8px;
  background: url('https://media.gettyimages.com/id/1434291841/video/4k-video-loopable-abstract-color-gradient-background.jpg?s=640x640&k=20&c=012cDUxuyKMCCjpw9T88VSujyglR3vg50hx8R9_yYRI=');
  border-radius: 5px;
  border: 1px solid;
  text-align: center;
  padding: 2px 5px 0px 5px;
  color: black;
  text-decoration: none;
}
.redbutton img{
  border: 0;
}
.redbutton:hover{
  color: chartreuse;
}

/* Body Style */
article, aside{
  display: inline-block;
  vertical-align: top;
  text-align: justify;
}

article{
  width: 32.5%;
  margin-right: 25px;
  background: url('https://i.pinimg.com/736x/b6/4b/33/b64b331c8dc81a2bb4899a76ef46b6f3.jpg');
  border-radius: 5px;
  box-shadow: 0px 4px 4px black;
}

aside{
  position: relative;
  width: 15%;
  background: url('https://i.pinimg.com/1200x/c3/3f/66/c33f666a3a62cfd9a5ccdc5986dc5863.jpg');
  background-size: cover;
  box-shadow: 0px 2px 5px black;
  border-radius: 5px;
  padding: 10px;
  color: aliceblue;
  font-size: 16px;
}

footer{
  margin-top: 10px;
  width: 50%;
  background: url('https://i.pinimg.com/736x/b6/4b/33/b64b331c8dc81a2bb4899a76ef46b6f3.jpg');
  box-shadow: 0px 2px 5px black;
  border-radius: 5px;
  padding-top: 30px;
}
footer h1{
  font-size: 20px;
}
.divfoot{
  display: inline-block;
  vertical-align: top;
  margin-left: 10px;
  padding-left: 10px;
}






