:root {
  --main-color: #d3ad7f;
  --black: #13131a;
  --bg: rgb(56, 139, 56);
  --bg1: #010103;
  --bg2: white;
  --green: rgb(56, 139, 56);
  --border: 0.1rem solid rgba(255, 255, 255, 3);
  --carmel: #ffd59a;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-transform: capitalize;
  transition: all 0.2s linear;
  list-style-type: none;
  text-decoration: none;
  border: none;
  outline: none;
}
@font-face {
  font-family: "CustomFont";
  src: url("Posterama1933W04Light.ttf") format("truetype");
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-padding-top: 9rem;
  scroll-behavior: smooth;
}
html::-webkit-scrollbar {
  width: 0.8rem;
}
html::-webkit-scrollbar-track {
  background: transparent;
}
html::-webkit-scrollbar-thumb {
  background: #fff;
  border-radius: 5rem;
}
body {
  font-family: "Arial", sans-serif;
  background: var(--bg);
}
section {
  padding: 2rem 7%;
  width: 100%;
}
.heading {
  text-align: center;
  color: var(--green);
  text-transform: uppercase;
  padding-bottom: 3.5rem;
  font-size: 4rem;
}
.heading span {
  color: var(--main-color);
  text-transform: uppercase;
}
.title {
  background: var(--bg2);
  height: 50px;
  margin: 0px;
  padding: 0px;
}
button,
input[type="submit"] {
  cursor: pointer;
}
.btn {
  margin-top: 1rem;
  display: inline-block;
  padding: 0.9rem 3rem;
  font-size: 3rem;
  font-weight: bolder;
  color: #fff;
  background: var(--black);
}
.btn:hover {
  letter-spacing: 0.2rem;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg);
  /* background:var(--bg2) ; */
  padding: 1.5rem 7%;
  border-bottom: var(--border);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.header .logo img {
  float: left;
  height: 100px;
  width: 100px;
  margin-right: 10px;
}
.header .text {
  padding: 0px;
  margin: 0px;
  float: left;
  display: grid;
  grid-template-columns: auto 1fr;
  justify-content: center;
  align-items: top;
}
.header .text p {
  float: left;
  color: #ffd59a;

  vertical-align: center;
  font-size: 4rem;
  font-weight: bold;
  padding: 0px;
  margin: 0px;
  justify-content: center;
  align-items: top;
}
.header .text h1 {
  float: left;
  color: white;
  text-shadow: 20px 20px 20px #6f4e37;
  font-size: 2rem;
  font-weight: bolder;
  vertical-align: top;
  align-items: top;
  justify-content: center;
  padding: 0px;
  margin: 0px;

  font-family: "Customfont";
  padding-bottom: 10px;
}
.header .text h3 {
  float: left;
  color: white;
  text-shadow: 20px 20px 20px #6f4e37;
  font-size: 5rem;
  font-weight: bolder;
  padding: 0px;
  margin: 0px;
  align-items: top;
  vertical-align: top;
}
.header .navbar {
  float: right;
  width: 80%;
}
.header .navbar a {
  margin: 0 1rem;
  font-size: 1.6rem;
  color: #fff;
}
.header .navbar a:hover {
  color: var(--main-color);
  border-bottom: 0.1rem solid var(--main-color);
  padding-bottom: 0rem;
}
.header .icons div {
  font-size: 5.5rem;
  color: #fff;
  margin-left: 2rem;
  cursor: pointer;
}
.header .icons div:hover {
  color: var(--main-color);
}

#menu-btn {
  display: none;
}
.custome-size-icon {
  font-size: 64px;
}
.header .search-form {
  position: absolute;
  top: 115%;
  right: 0%;
  background: #fff;
  width: 0rem;
  height: 0rem;
  display: flex;
  align-items: center;
  transform: scaleY(0);
  transform-origin: top;
}
.header .search-form.active {
  transform: scaleY(1);
}
.header .search-form input {
  width: 0%;
  height: 0%;
  font-size: 1.6rem;
  color: var(--black);
  padding: 0rem;
  text-transform: none;
}
.header .search-form label {
  font-size: 2.2rem;
  color: var(--black);
  margin-right: 0rem;
  cursor: pointer;
}
.header .search-form label:hover {
  color: var(--main-color);
}
.header .cart-items-container {
  position: absolute;
  top: 100%;
  right: 100%;
  width: 35rem;
  height: calc(100vh-9.5rem);
  background: #fff;
  padding: 0 1.5rem;
}
.header .cart-items-container.active {
  right: 0;
}
.header .cart-items-container .cart-item {
  position: relative;
  margin: 2rem 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.header .cart-items-container .cart-item .fa-times {
  position: relative;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  color: var(--black);
  cursor: pointer;
}
.header .cart-items-container .cart-item .fa-times:hover {
  color: var(--main-color);
}
.header .cart-items-container .cart-item img {
  height: 7rem;
}

.header .cart-items-container .cart-item img {
  height: 7rem;
}
.header .cart-items-container .cart-item .content h3 {
  font-size: 2.5rem;
  color: var(--black);
  padding-bottom: 0.5rem;
}

.header .cart-items-container .cart-item .content price {
  font-size: 1.5rem;
  color: var(--main-color);
}
.header .cart-items-container .btn {
  width: 100%;
  text-align: center;
}
.home {
  /* min-height: 40vh; */
  max-height: 100vh;
  display: block;
  align-items: center;
  /* background: url(../images/homebg2.png) no-repeat ; */
  background-size: cover;
  background-position: center;
  margin: 0px;
  padding: 0px;
}
.home .content {
  max-width: 70rem;
  align-items: center;
  align-content: center;
  z-index: 2;
}

.home .content h3 {
  font-size: 4rem;
  text-transform: uppercase;
  color: white;
}

.home .content p {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.8;
  padding: 1rem 0;
  color: #fff;
}

.home .slider {
  position: relative;
  width: 100%;
  /* max-width: 600px; */
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  margin: 0px;
  padding: 0px;
  max-height: 80vh;
}

.home .slider .slides {
  width: 100%;
  display: flex;
  transition: transform 0.5s ease-in-out;
  margin: 0px;
  padding: 0px;
}

.home .slider .slide {
  min-width: 100%;
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

.home .slider .slide img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  object-fit: cover;
}
.home .slider .slide .text-overlay {
  position: absolute;
  align-items: center;
  align-content: center;
  bottom: calc(80vh / 3);
  left: calc(100vh / 3);
  color: white;
  background: rgba(0, 0, 0, 0.1);
  padding: 10px;
  border-radius: 5px;
  max-width: 70rem;
  z-index: 2;
  text-align: center;
}
.home .slider .slide .text-overlay h1 {
  font-size: 3rem;
  text-transform: uppercase;
  color: var(--main-color);
}
.home .slider .slide .text-overlay h3 {
  font-size: 4rem;
  text-transform: uppercase;
  color: white;
}

.text-overlay p {
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 1.8;
  padding: 1rem 0;
  color: #fff;
  animation: typing 4s steps(12, end), blink 0.5s step-end infinite alternate;
}
button {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  /* background-color: rgba(0, 0, 0, 0.5); */
  background-color: var(--green);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
}

button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}
.about {
  background: var(--green);
}
.about .row {
  display: flex;
  align-items: flex-start;
  background: var(--green);
  flex-wrap: wrap;
  vertical-align: top;
}
.about .row .image {
  flex: 1 1 45rem;
}
.about .row .image img {
  width: 100%;
  max-height: 70vh;
  border-radius: 10px;
}
.about .row .content {
  flex: 1 1 45rem;
  padding: 2rem;
  vertical-align: top;
  text-align: justify;
}
.contentheading span {
  font-family: "customfont";
  font-size: 3rem;
  font-weight: bolder;
  color: white;
  text-shadow: 20px 20px 20px #6f4e37;
}
.about .row .content h3 {
  font-family: "customfont";
  font-size: 3rem;
  font-weight: bolder;
  width: 100%;
  color: white;
  text-shadow: 20px 20px 20px #6f4e37;
}
.about .row .content p {
  font-size: 2rem;
  color: #fff;
  padding: 1rem 0;
  line-height: 1.8;
  font-family: "customfont";
}
.menu {
  background: var(--green);
}
.menu .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1.5rem;
}
.menu .box-container .box {
  padding: 5rem;
  text-align: center;
  border: var(--border);
}
.menu .box-container .box img {
  height: 10rem;
}
.menu .box-container .box h3 {
  color: #fff;
  font-size: 2rem;
  padding: 1rem 0;
}
.menu .box-container .box .price {
  font-size: 2.5rem;
  color: #fff;
  padding: 0.5rem 0;
}
.menu .box-container .box .price span {
  font-size: 1.5rem;
  text-decoration: line-through;
}
.menu .box-container .box:hover {
  background: #fff;
}
.menu .box-container .box:hover > * {
  color: var(--black);
}
.products {
  background: var(--green);
}
.products .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1.5rem;
}
.products .box-container .box {
  text-align: center;
  padding: 2rem;
  border: var(--border);
}
.products .box-container .box .icons a {
  width: 5rem;
  height: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  color: #fff;
  margin: 0.5rem;
  border: var(--border);
}
.products .box-container .box .icons a:hover {
  background: var(--main-color);
}
.products .box-container .box .image {
  padding: 2.5rem 0;
}
.products .box-container .box .image img {
  height: 25rem;
  width: 95%;
}
.products .box-container .box:hover .image img {
  transform: scale(1.2);
}
.products .box-container .box .content h1 {
  font-size: 2.5rem;
  color: #fff;
  color: white;
  text-shadow: 20px 20px 20px #6f4e37;
}
.products .box-container .box .content .price {
  font-size: 1.7rem;
  color: #fff;
  text-align: justify;
}
.products .box-container .box .content .stars {
  padding: 1.5rem;
}

.products .box-container .box .content .stars i {
  font-size: 1.7rem;
  color: var(--main-color);
}

.products .box-container .box .content .price span {
  font-size: 1.5rem;
  font-weight: lighter;
  text-decoration: line-through;
}
.agent {
  background: var(--green);
}
.agent .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1.5rem;
}

.agent .box-container .box {
  border: var(--border);
  text-align: center;
  padding: 3rem 2rem;
}

.agent .box-container .box p {
  font-size: 1.7rem;
  line-height: 1.8;
  color: #fff;
  padding: 4rem 0;
  text-transform: none;
  text-align: center;
  justify-content: flex-start;
  font-family: "Verdana", "Arial", "Tahoma", "Serif";
}
.agent .box-container .box .user {
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  object-fit: cover;
}
.agent .box-container .box:hover img {
  transform: scale(1.2);
}
.agent .box-container .box h1 {
  padding: 1rem 0;
  font-size: 2rem;
  color: #fff;
}
.agent .box-container .box h3 {
  padding: 1rem 0;
  font-size: 2rem;
  color: #fff;
  text-align: top;
  align-items: top;
}
.agent .box-container .box .text {
  padding: 0px;
  margin: 0px;
  display: grid;
  grid-template-columns: auto 1fr;
  justify-content: center;
  align-items: top;
}
.agent .box-container .box .flagimage {
  width: 40px;
  margin: 0;
  padding: 0;
}
.agent .box-container .box .map {
  flex: 1 1 45rem;
  width: 100%;
  object-fit: cover;
}
.agent .box-container .box .stars i {
  font-size: 1.5rem;
  color: var(--main-color);
}
.contact {
  background: var(--green);
}

.contact .row {
  display: flex;
  align-items: center;
  background: var(--green);
  flex-wrap: wrap;
  gap: 1rem;
}
.contact .row .content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1.5rem;
  width: 100%;
}
.contact .row .content .map {
  flex: 1 1 45rem;
  width: 100%;
  object-fit: cover;
}
.address .row .text {
  flex: 1 1 45rem;
  width: 100%;
  object-fit: cover;
  align-items: top;
  align-content: top;
  justify-content: center;
  text-align: center;
  border-radius: 10px;
  border: 2px solid white;
  margin-bottom: 10px;
  padding: 5px;
}
.address .row .text p {
  font-size: 2rem;
  line-height: 1.8;
  color: #fff;
  padding: 1rem 0;
  text-transform: none;
  text-align: top;
  justify-content: center;
  font-family: "Verdana", "Arial", "Tahoma", "Serif";
}
.address .row .text h3 {
  padding: 0rem 0;
  font-size: 2rem;
  color: #fff;
}
.contact .row form {
  flex: 1 1 45rem;
  padding: 5rem 2rem;
  text-align: center;
}

.contact .row form h3 {
  text-transform: uppercase;
  font-size: 3.5rem;
  color: #fff;
}

.contact .row form .inputbox {
  display: flex;
  align-items: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
  background: var(--bg);
  border: var(--border);
  border: 2px solid white;
}
.contact .row form .inputbox span {
  font-size: 2rem;
  color: white;
  padding-left: 2rem;
}
.contact .row form .inputbox input {
  width: 100%;
  padding: 2rem;
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  text-transform: none;
  background: none;
}
.contact .row form .inputbox input::placeholder {
  color: white;
}
.contact .row form .inputbox textarea {
  width: 100%;
  padding: 2rem;
  font-size: 2.5rem;
  color: white;
  text-transform: none;
  background: none;
  border: 2px solid white;
}
.contact .row form .inputbox textarea::placeholder {
  color: white;
}
.blog {
  background: var(--green);
}
.blog .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1.5rem;
}
.blog .box-container .box {
  border: var(--border);
}
.blog .box-container .box .image {
  height: 25rem;
  overflow: hidden;
  width: 100%;
}
.blog .box-container .box .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog .box-container .box:hover .image img {
  transform: scale(1.2);
}
.blog .box-container .box .content {
  padding: 2rem;
}
.blog .box-container .box .content .title {
  font-size: 2.5rem;
  color: #fff;
  line-height: 1.5;
}
.blog .box-container .box .content .title:hover {
  color: var(--main-color);
}
.blog .box-container .box .content span {
  display: block;
  padding-top: 1rem;
  font-size: 2rem;
  color: var(--main-color);
}
.blog .box-container .box .content p {
  font-size: 1.6rem;
  color: #ccc;
  line-height: 1.8;
  padding: 1rem 0;
}
.footer {
  background: var(--bg);
  text-align: center;
}
.footer .share {
  padding: 1rem 0;
}
.footer .share a {
  width: 5rem;
  height: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  color: #fff;
  border: var(--border);
  border-radius: 50%;
  margin: 0.3rem;
}
.footer .share a:hover {
  background: var(--main-color);
}
.footer .links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  /* padding: 2rem 0; */
  gap: 1rem;
  margin-bottom: 10px;
}
.footer .links a {
  padding: 0.5rem 2rem;
  font-size: 2rem;
  color: #fff;
  /* border: var(--border); */
}
.footer .links a:hover {
  background: var(--main-color);
}
.footer .ownership {
  align-items: flex-end;
  align-content: center;
}
.footer .ownership .credit {
  font-size: 1rem;
  color: #fff;
  font-weight: bold;
  border: var(--border);
  margin-top: 10px;
  padding: 5px;
  border-radius: 5px;
}
.footer .credit span {
  color: var(--main-color);
  font-size: 1rem;
}
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active,
.dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 991px) {
  html {
    font-size: 55%;
  }
  .header {
    padding: 1.5rem 2rem;
  }
  section {
    padding: 2rem;
  }
  #menu-btn {
    display: inline-block;
  }

  .header .navbar {
    position: absolute;
    top: 100%;
    right: -100%;
    background: #fff;
    width: 30rem;
    height: calc(100wh-9.5rem);
  }
  .header .navbar.active {
    right: 0;
  }
  .header .navbar a {
    display: block;
    margin: 1.5rem;
    padding: 0.5rem;
    font-size: 2rem;
    color: var(--black);
  }

  .home .slider .slide .text-overlay {
    position: absolute;
    align-items: center;
    align-content: center;
    bottom: 100px;
    left: 250px;
    color: white;
    background: rgba(0, 0, 0, 0.4);
    padding: 10px;
    border-radius: 5px;
    max-width: 70rem;
    z-index: 2;
  }
  .footer .links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    /* padding: 2rem 0; */
    gap: 0.3rem;
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  html {
    font-size: 70%;
  }
  body {
    width: 100%;
  }
  section {
    padding: 2rem;
    width: 200%;
  }
  .title {
    width: 200%;
    background-color: white;
    padding-left: 2rem;
  }
  #menu-btn {
    display: inline-block;
  }

  .header .navbar {
    position: absolute;
    top: 100%;
    right: -100%;
    background: #fff;
    width: 30rem;
    height: calc(100wh-9.5rem);
  }
  .header .navbar.active {
    right: 0;
  }
  .header .navbar a {
    display: block;
    margin: 1.5rem;
    padding: 0.5rem;
    font-size: 2rem;
    color: var(--black);
  }
  .header .search-form {
    width: 90%;
    right: 2rem;
  }

  .header .text h1 {
    font-size: 2.7em;
    font-weight: bolder;
    vertical-align: center;

    margin-left: 5px;
  }
  .header .text h3 {
    float: left;
    color: white;
    text-shadow: 20px 20px 20px #6f4e37;
    font-size: 5rem;
    font-weight: bolder;
    padding: 0px;
    margin: 0px;
    padding-top: 20px;
    align-items: center;
    vertical-align: middle;
  }
  .header .logo img {
    height: 15rem;
    width: 15rem;
    margin: 0;
    padding: 0;
  }
  .home {
    background-position: left;
    justify-content: center;
    text-align: center;
  }
  .home .content h3 {
    font-size: 4.5rem;
  }
  .home .content p {
    font-size: 1.5rem;
  }
  .home .slider {
    position: relative;
    width: 100%;
    /* max-width: 600px; */
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin: 0px;
    padding: 0px;
    min-height: 100vh;
  }
  .home .slider .slide img {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    object-fit: cover;
    filter: blur(1.5px);
    -webkit-filter: blur(1.5px);
  }
  .home .slider .slide .text-overlay {
    position: absolute;
    align-items: center;
    align-content: center;
    justify-content: center;
    bottom: calc(100vh / 3);
    left: 80px;
    color: white;
    background: rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 5px;
    max-width: 60rem;
    z-index: 2;
  }

  .text-overlay p {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.8;
    padding: 1rem 0;
    color: white;
  }
  button {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    /* background-color: rgba(0, 0, 0, 0.5); */
    background-color: var(--green);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
  }
  .about .row .content {
    text-align: justify;
  }
  .about .row .image img {
    width: 100%;
    max-height: 100vh;
  }
  .contentheading span {
    font-family: "customfont";
    font-size: 9rem;
    font-weight: bolder;
    color: white;
    text-shadow: 20px 20px 20px #6f4e37;
  }
  .about .row .content h3 {
    font-family: "customfont";
    font-size: 4rem;
    font-weight: bolder;
    width: 100%;
    color: white;
    text-shadow: 20px 20px 20px #6f4e37;
  }
  .about .row .content p {
    font-size: 2.5rem;
    font-weight: bolder;
    color: #fff;
    padding: 1rem 0;
    line-height: 1.8;
  }
  .btn {
    margin-top: 1rem;
    display: inline-block;
    padding: 0.9rem 3rem;
    font-size: 3rem;
    color: #fff;
    background: var(--black);
  }
  .products .box-container .box .content h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
  }
  .products .box-container .box .content .price {
    font-size: 2.5rem;
    font-weight: bold;
    font-family: sans-serif;
    color: #fff;
  }
  .products .box-container {
    display: block;
    gap: 2rem;
  }
  .products .box-container .box {
    text-align: center;
    padding: 2rem;
    border: 0.2rem solid rgba(255, 255, 255, 3);
  }
  .agent .box-container .box {
    border: 0.2rem solid rgba(255, 255, 255, 3);
    text-align: center;
    padding: 1rem 2rem;
    border-radius: 0px;
  }
  .products .box-container .box .image img {
    height: 30rem;
    width: 95%;
    border-radius: 10px;
  }
  .agent .box-container {
    display: block;
    gap: 1.5rem;
  }
  .agent .box-container .box p {
    font-size: 3rem;
    line-height: 1.8;
    color: #fff;
    padding: 2rem 0;
    text-transform: none;
    font-family: sans-serif;
  }
  .agent .box-container .box .user {
    width: 44rem;
    height: 44rem;
    border-radius: 50%;
    object-fit: cover;
  }
  .agent .box-container .box h1 {
    padding: 1rem 0;
    font-size: 4rem;
    color: #fff;
  }
  .agent .box-container .box h3 {
    padding: 1rem 0;
    font-size: 3.5rem;
    font-weight: bold;
    color: #fff;
  }
  .agent .box-container .box .flagimage {
    width: 40px;
    margin: 0;
    padding: 0;
  }
  .contact .row .map {
    width: 768px;
  }
  .address .row .text {
    flex: 1 1 45rem;
    width: 100%;
    object-fit: cover;
    align-items: top;
    align-content: top;
    justify-content: center;
    text-align: center;
    border-radius: 0px;
    border: 0px solid white;
    margin-bottom: 10px;
    padding: 5px;
  }
  .address .row .text p {
    font-size: 2.8rem;
    line-height: 1.8;
    color: #fff;
    padding: 0rem 0;
    text-transform: none;
    text-align: top;
    justify-content: center;

    font-weight: bolder;
  }
  .address .row .text h3 {
    padding: 0rem 0;
    font-size: 2.8rem;
    color: #fff;
    font-weight: bolder;
  }
}
@media only screen and (max-width: 321px) {
  html {
    font-size: 50%;
  }
  section {
    padding: 2rem;
    width: 30%;
  }
  .title {
    width: 100%;
    background-color: white;
  }
  #menu-btn {
    display: inline-block;
  }
}

@media only screen and (max-width: 320px) {
  html {
    font-size: 50%;
  }
  section {
    padding: 2rem;
    width: 100%;
  }
  .title {
    width: 100%;
    background-color: white;
  }
  #menu-btn {
    display: inline-block;
  }
}
