/*header and nav*/
.htop {
  background-color: #ffffff;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  position: fixed;
  align-items: center;
  align-self: flex-start;
}

header>img {
  padding: 1px 4px;
}

nav>ul>li>a {
  text-decoration: none;
  color: #303030;
  font-weight: 600;
  text-transform: uppercase;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

li {
    float: left;
    height: 100%;
    display: flex;
}

li a, .dropbtn {
    display: inline-block;
    color: #303030;
    text-align: center;
    padding: 15px 16px;
    text-decoration: none;
    height:  100%;
    align-items: center;
}

li a:hover, .dropdown:hover .dropbtn {
    color: #858585;
}

li.dropdown {
    display: inline-block;
}

.drop {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.drop a {
    color: #282828;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.drop a:hover {
	background-color: #282828;
}

.dropdown:hover .drop {
  display: block;
}
/*header and nav end*/

/*body sections*/
body {
  background-color:#DBDADA;
  background-size: cover;
  margin: 0%;
  padding: 0%;
  justify-content: flex-start;
  align-content: flex-start;
  align-items:  center;
  display:  flex;
  flex-wrap: wrap;
  font-family: 'Inconsolata', monospace;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Press Start 2P', cursive;
    padding: 1px;
    margin: 1px;
}

h1 {
  font-size: 18px;
}

h2 {
  font-size: 16px;
}

h3 {
  font-size: 14px;
}

h4 {
  font-size: 12px;
}

h5 {
  font-size: 10px;
}

h6 {
  font-size: 8px;
}

section {
  height: 100%;
  width: 100%;
  padding: 20%;
}

#home {
  background: #191919;
}

#comics {
  background: #474747;
}

#jogos {
  background: #777777;
}

#mwei {
  background: #a3a3a3;
}

#sobre {
  background: #bababa;
}

article {
  background-color: #ffffff;
  display: block;
  height: auto;
  width: 60%;
  margin: auto;
  padding: 3%;
}
input {
  padding: 10px;
  font-size: 12px;
}
textarea {
  padding: 10px;
  font-size: 12px;
}
/*body sections end*/
/*footer*/
a {
  text-decoration: none;
  color: #000000;
}
a:hover {
  color: #858585;
}