@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
}

body {
  min-height: 100vh;
  background: #f7f7f7;
}

a {
  color: #333;
}

a:hover {
  color: darkorange;
}

.top {
  width: 100%;
  height: auto;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ccc;
}

.top-item {
  width: 100%;
  height: auto;
  flex: 1;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.pagewrap {
  width: 100%;
  height: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.page {
  width: 33.33%;
  height: auto;
  flex: 1;
}

.post {
  width: 100%;
  height: auto;
  padding: 7px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  margin: 3px;
}

.midia {
  padding: 7px;
}

.midia img {
  object-fit: cover;
}

.post-icon {
  padding: 7px;
}

.avatar {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.avatar-img img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

/* The side navigation menu */
.sidenav {
  line-height: 20px;
  height: 100%; /* 100% Full-height */
  width: 0; /* 0 width - change this with JavaScript */
  position: fixed; /* Stay in place */
  z-index: 10000; /* Stay on top */
  top: 0;
  left: 0;
  background-color: rgb(255, 255, 255); /* Black*/
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 60px; /* Place content 60px from the top */

  transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}

/* The navigation menu links */
.sidenav a {
  padding: 8px 8px 8px 32px;
  text-align: center;
  text-decoration: none;
  font-size: 24px;
  color: #000;
  display: block;
  transition: 0.3s;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover,
.offcanvas a:focus {
  color: #000;
  text-decoration: none;
  font-weight: bold;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
  position: absolute;
  top: 15px;
  right: 50px;
  font-size: 36px;
  margin-left: 50px;
  font-size: 36px;
}

@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 15px;
  }
  .sidenav a {
    font-size: 18px;
  }
}

/* The side navigation menu 2 */
.sidenav2 {
  line-height: 20px;
  height: 100%; /* 100% Full-height */
  width: 0; /* 0 width - change this with JavaScript */
  position: fixed; /* Stay in place */
  z-index: 10001; /* Stay on top */
  top: 0;
  right: 0;
  background-color: rgb(255, 255, 255); /* Black*/
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 60px; /* Place content 60px from the top */
  transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}

/* The navigation menu links */
.sidenav2 a {
  padding: 8px 8px 8px 32px;
  text-align: center;
  text-decoration: none;
  font-size: 24px;
  color: #000;
  display: block;
  transition: 0.3s;
}

/* When you mouse over the navigation links, change their color */
.sidenav2 a:hover,
.offcanvas a:focus {
  color: #000;
  font-weight: bold;
  text-decoration: none;
}

/* Position and style the close button (top right corner) */
.sidenav2 .closebtn {
  position: absolute;
  top: 15px;
  right: 50px;
  font-size: 36px;
  margin-left: 50px;
  font-size: 36px;
}

@media screen and (max-height: 450px) {
  .sidenav2 {
    padding-top: 15px;
  }
  .sidenav2 a {
    font-size: 18px;
  }
}

.sidenavcontainer {
  width: 100%;
  padding: 30px;
}

.btn {
  width: auto;
  height: auto;
  padding: 10px;
  background-color: darkorange;
  color: #fff;
  border: none;
  border-radius: 7px;
  outline: none;
}

.btn:hover {
  width: auto;
  height: auto;
  padding: 10px;
  background-color: #000;
  color: #fff;
}

/*//////////////////////////////////////////////////////////////////*/

@media screen and (max-width: 768px) {
  .pagewrap {
    flex-direction: column;
  }

  .page {
    width: 100%;
  }

  .top-item img {
    width: 150px;
  }
}
