/*
node-sass scssstyle.scss style.css
*/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  text-decoration: none;
}

header {
  background-color: #484848;
}

header .logo {
  padding: 100px 0;
  text-align: center;
}

header .logo img {
  width: 300px;
}

header ul {
  position: relative;
  bottom: 0;
  background-color: #262626;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header ul li {
  padding: 20px 0;
}

header ul li a {
  color: white;
}

.container {
  width: 900px;
  margin: auto;
  padding: 10vh 0;
}

.container .content1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.container .content1 .content_title {
  width: 100%;
}

.container .content1 .description {
  width: 70%;
}

.container .content1 .description p {
  padding: 10px 20px 10px 0;
  line-height: 2rem;
  text-align: justify;
}

.container .content1 .thumbnaile {
  width: 30%;
}

.container .content1 .thumbnaile img {
  width: 100%;
}
/*# sourceMappingURL=style.css.map */