html, body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Main container */
.scalingcontainer {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 50px;
  background: white;
  border: 1px solid #000;
  filter: drop-shadow(0px 0px 5px #808080);
  box-sizing: border-box;
}

/* Navbar */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2em 0 1em 0;
  background: white;
}

#nin {
  width: 100%;
  max-width: 25em;
  height: auto;
  display: block;
}

.topless {
  display: flex;
  align-items: flex-end;
}

/* Dropdown */
.dropbtn {
  background: transparent;
  color: #000;
  padding: 10px;
  font-size: 30px;
  border: none;
  cursor: pointer;
}

.dropup {
  position: relative;
  display: inline-block;
}

.dropup-content {
  display: none;
  position: absolute;
  background: #eee;
  min-width: 200px;
  top: 60px;
  right: 0;
  z-index: 10;
  font-size: 16px;
}

.dropup-content a {
  color: #1f1f1f;
  padding: 16px 20px;
  text-decoration: none;
  display: block;
  position: relative;
}

.dropup:hover .dropup-content {
  display: block;
}

/* Sections */
.section {
  margin: 60px auto;
  color: #666;
  line-height: 1.6;
}

.section p {
  text-align: justify;
  word-spacing: 4px;
  font-size: 20px;
  color: #353535;
}

h1 {
  color: #313131;
}

/* Side images */
.side-img {
  float: right;
  width: 50%;
  max-width: 50em;
  height: auto;
  margin: 0 0 20px 40px;
}

/* Footer */
.copyr {
  width: 100%;
  height: 60px;
  text-align: center;
}

.copyr p {
  margin-top: 35px;
}

.disclaimer {
  font-size: 15px;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) and (orientation: portrait) {
  .scalingcontainer {
    padding: 0 20px;
  }

  .side-img {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 20px 0;
  }

  h1 {
    font-size: 28px;
  }

  .section p:not(.disclaimer) {
    font-size: 16px;
  }


}

@media (max-width: 480px) {
  h1 {
    font-size: 24px;
  }

  .section p:not(.disclaimer) {
    font-size: 14px;
  }

  .disclaimer {
    font-size: 12px;
  }

 .topless img {
  height: 15px !important;
  padding: 5px !important;
 }
.dropbtn {
 font-size: 18px;
}
.section {
  margin: 0 auto !important;
}



}

.dropup-content a{
  position: relative;
  text-decoration: none;
  color: #000;
  padding-bottom: 6px;
}

.dropup-content a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}

.dropup-content a:hover::after{
  width: 100%;
}