@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Handlee&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
* {
  box-sizing: border-box;
}
:root {
  --eerie-black_80: hsla(225, 9%, 9%, 0.8);
  --eerie-black_60: hsla(225, 9%, 9%, 0.6);
  --eerie-black: hsl(225, 9%, 9%);
  --light-gray-1: hsl(0, 0%, 80%);
  --light-gray-2: hsl(240, 2%, 81%);
  --gainsboro: hsl(240, 9%, 91%);
  --cultured: hsl(300, 8%, 95%);
  --blue-ryb: hsl(232, 100%, 60%);
  --white_20: hsla(0, 0%, 100%, 0.2);
  --white: hsl(0, 0%, 100%);

  /**typography*/

  --ff-inter: 'Inter', sans-serif;

  --fs-1: 3.6rem;
  --fs-2: 3.2rem;
  --fs-3: 2.4rem;
  --fs-4: 2.2rem;
  --fs-5: 2rem;
  --fs-6: 1.8rem;
  --fs-7: 1.5rem;
  --fs-8: 1.4rem;
  --fs-9: 1.3rem;

  --fw-700: 700;
  --fw-500: 500;
  --fw-300: 300;

  /**spacing*/

  --section-padding: 50px;

  /*** radius*/

  --radius-16: 16px;
  --radius-pill: 200px;
  --radius-circle: 50%;

  /*** transition*/

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;

}

/*-----------------------------------
  #RESET
-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

a,
img,
span,
input,
button,
ion-icon {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  height: auto;
}

input,
button {
  background: none;
  border: none;
  font: inherit;
}

input {
  width: 100%;
  outline: none;
}

button {
  cursor: pointer;
}

ion-icon {
  pointer-events: none;
}

html {
  font-family: var(--ff-inter);
  font-size: 10px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--white);
  color: var(--eerie-black);
  font-size: 1.6rem;
  line-height: 1.5;
  overflow-x: hidden !important;
}

body.active {
  overflow: hidden;
}

:focus-visible {
  outline-offset: 4px;
}


/*-----------------------------------
  #REUSED STYLE
-----------------------------------*/

.section {
  margin-inline: 15px;
}

.hover\:underline {
  text-underline-offset: 3px;
}

.hover\:underline:is(:hover, :focus) {
  text-decoration: underline;
}

.h1,
.h2,
.h3,
.h4,
.h5 {
  line-height: 1.2;
}

.h1,
.h2 {
  font-weight: var(--fw-300);
}

.h1 {
  font-size: var(--fs-1);
}

.h2 {
  font-size: var(--fs-2);
}

.h3 {
  font-size: var(--fs-3);
}

.h4 {
  font-size: var(--fs-4);
}

.h5 {
  font-size: var(--fs-6);
}

.newsletter-form {
  position: relative;
  max-width: 400px;
}

.newsletter-form .email-field {
  background-color: var(--cultured);
  color: inherit;
  padding: 14px 20px;
  padding-inline-end: 140px;
  border-radius: var(--radius-pill);
}

.newsletter-form .email-field:focus {
  background-color: var(--gainsboro);
}

.newsletter-form .email-field::placeholder {
  color: var(--eerie-black_60);
}

.newsletter-form .btn {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
}

.btn {
  background-color: var(--eerie-black);
  color: var(--white);
  font-size: var(--fs-6);
  font-weight: var(--fw-500);
  line-height: 1.3;
  padding: 11px 25px;
  border-radius: var(--radius-pill);
  transition: var(--transition-1);
}

.btn:is(:hover, :focus) {
  background-color: var(--blue-ryb);
}

.section-subtitle {
  padding-block: 15px;
}

.img-holder {
  aspect-ratio: var(--width) / var(--height);
  background-color: var(--light-gray-1);
  overflow: hidden;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.has-scrollbar {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: inline mandatory;
  padding-block-end: 20px;
  margin-block-end: -20px;
  margin-inline: -15px;
  padding-inline: 15px;
}

.has-scrollbar::-webkit-scrollbar {
  height: 10px;
}

.has-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}

.has-scrollbar::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: var(--radius-pill);
}

.has-scrollbar::-webkit-scrollbar-button {
  width: 10px;
}

.has-scrollbar:is(:hover, :focus-within)::-webkit-scrollbar-thumb {
  background-color: var(--light-gray-1);
}

.scrollbar-item {
  min-width: 70%;
  scroll-snap-align: center;
}

.blog-card .card-banner {
  position: relative;
  border-radius: var(--radius-16);
  margin-block-end: 15px;
}

.avatar-list {
  display: flex;
  flex-direction: row-reverse;
}

.avatar-list.absolute {
  position: absolute;
  bottom: 10px;
  left: 10px;
}

.avatar-item:not(:first-child) {
  margin-inline-end: -15px;
}

.avatar {
  width: 40px;
  border-radius: var(--radius-circle);
  background: none;
  border: 5px solid var(--white_20);
  transition: var(--transition-1);
  will-change: transform;
}

.avatar-list.absolute .avatar:is(:hover, :focus) {
  transform: scale(0.9);
  border-color: var(--white);
}

.card-meta-list {
  display: flex;
  gap: 5px;
}
.card-meta-list a{
  font-size: 10px;
}
.card-tag {
  background-color: var(--cultured);
  font-size: var(--fs-9);
  font-weight: var(--fw-500);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  transition: var(--transition-1);
}

.card-tag:is(:hover, :focus) {
  background-color: var(--gainsboro);
}

.blog-card .card-title {
  margin-block: 8px 12px;
  text-decoration-thickness: 2px;
}

.blog-card .card-text {
  font-size: var(--fs-8);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  padding-inline-end: 20px;
}

.grid-list {
  display: grid;
  gap: 30px;
}



/*-----------------------------------
  #HERO
-----------------------------------*/

.newsletter-text {
  display: none;
}

.hero {
  padding-block-start: 10px;
}

.hero-title {
  margin-block-end: 25px;
}

/*-----------------------------------*\
  #RECENT POST
\*-----------------------------------*/

.top-author {
  display: none;
}

.recent {
  padding-block-start: 15px;
}

.recent .section-title .strong {
  display: block;
}

.recent .section-title {
  margin-block-end: 20px;
}

.recent .btn {
  margin-inline: auto;
  margin-block: 50px 30px;
}

/*-----------------------------------
  #RECOMMENDED POST
-----------------------------------*/

.section.recommended {
  border-block-end: none;
}

.recommended .grid-list {
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.recommended .blog-card {
  margin-block-end: 5px;
}

/*-----------------------------------
  #NEWSLETTER
-----------------------------------*/

.newsletter {
  padding-block-start: 40px;
}

.newsletter .section-title {
  margin-block-end: 25px;
}

/* Configuration des icônes des médias sociaux*/
footer {

  margin-left: 0px !important;
  background-color: #2b2a2a;
  color: #bbb;
  font-size: 13px;
  border-top: 1px solid #444;
  margin-left: -20px;
  margin-right: -20px;
  padding: 20px !important;
  margin-top: 50px !important;
  text-align: center;
  align-items: center !important;
}

footer a i {
  color: #ffffff;
  margin-right: 15px;
}
footer p{
  padding: 8px;
}

footer a i:hover {
  color: #3cb7dd;
}

.social-icons {
  align-items: center !important;
  display: inline-flex;
  margin-left: auto;
  margin-top: 20px;
  
}
/* Pour les écrans de téléphone */
@media (max-width: 768px) {
   #foot {
    font-size: 10px;
  }

}

/*-----------------------------------
  #MEDIA QUERIES
-----------------------------------*/
@media (min-width: 575px) {

  :root {

    /*** typographie*/
    --fs-1: 6rem;
    --fs-2: 4.8rem;

  }

  /** RStyle réutilisable*/

  .section {
    margin-inline: 30px;
  }

  .newsletter-form,
  .btn {
    --fs-6: 2.2rem;
  }

  .newsletter-form .email-field {
    font-size: var(--fs-6);
    padding-inline-end: 170px;
  }

  .btn {
    padding: 14px 30px;
  }

  .section-subtitle {
    font-size: var(--fs-6);
  }

  .has-scrollbar {
    margin-inline: -30px;
    padding-inline: 30px;
  }

  .has-scrollbar::-webkit-scrollbar-button {
    width: 15px;
  }

  .scrollbar-item {
    min-width: 40%;
  }

  .grid-list {
    grid-template-columns: 1fr 1fr;
    column-gap: 10px;
  }


  /** RECOMMENDED POST, FOOTER*/

  .recommended .grid-list,
  .footer-top {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-brand {
    grid-column: 1 / 4;
  }

  .footer-text {
    max-width: 400px;
    margin-block-end: 20px;
  }

}

/** responsive for large than 768px screen*/

@media (min-width: 768px) {
  :root {
    --fs-1: 7.2rem;
    --fs-2: 5.5rem;
    --radius-16: 26px;
  }

  .section {
    margin-inline: 50px;
  }

  .has-scrollbar {
    margin-inline: -50px;
    padding-inline: 50px;
    gap: 15px;
  }

  .has-scrollbar::-webkit-scrollbar-button {
    width: 25px;
  }

  .scrollbar-item {
    min-width: 30%;
  }

  .grid-list {
    gap: 40px 15px;
  }

  /** RECENT POST*/

  .top-author {
    display: block;
    text-align: right;
  }

  .recent .title-wrapper {
    display: flex;
    justify-content: space-between;
    margin-block-end: 10px;
  }

  .top-author .avatar-item:not(:first-child) {
    margin-inline-end: -25px;
  }

  .top-author .span {
    color: var(--eerie-black_80);
    font-size: var(--fs-8);
    margin-block-start: 10px;
  }

  .avatar.large {
    border: 6px solid var(--white);
    width: 70px;
  }

  .avatar.large:is(:hover, :focus) {
    transform: translateY(-3px);
  }

  /*** RECOMMENDED POST*/
  .recommended .grid-list {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 15px;
  }

  /** Footer*/

  .footer-top {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-brand {
    grid-column: 1 / 5;
  }

  .footer-link {
    --fs-7: 1.7rem;
  }

}

/** responsive for large than 992px screen*/

@media (min-width: 992px) {

  :root {
    --fs-1: 8.8rem;
    --section-padding: 60px;
  }

  .section {
    margin-inline: 60px;
  }

  .has-scrollbar {
    margin-inline: -60px;
    padding-inline: 60px;
  }

  .has-scrollbar::-webkit-scrollbar-button {
    width: 30px;
  }

  .btn {
    --fs-6: 2.4rem;
    padding: 18px 36px;
  }

  .newsletter-form {
    max-width: 450px;
  }

  .newsletter-form .email-field {
    padding-block: 18px;
    padding-inline-start: 30px;
  }

  .blog-card .card-title {
    padding-inline-end: 15px;
  }

  .blog-card .card-text {
    font-size: unset;
  }

  .grid-list {
    grid-template-columns: repeat(3, 1fr);
  }


  /*** HERO*/

  .hero {
    padding-block-start: 25px;
  }

  .hero-title {
    margin-block-end: 30px;
  }

  .hero .newsletter-text {
    display: block;
    max-width: 400px;
    color: var(--eerie-black_80);
    line-height: 1.3;
  }

  .hero .wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
  }


  .top-author .avatar {
    width: 85px;
  }

  .recommended .grid-list {
    grid-template-columns: repeat(6, 1fr);
  }

  /** NEWSLETTER*/
  .newsletter {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .newsletter .section-title {
    margin-block-end: 0;
  }

}

/** responsive sur de très large écran*/

@media (min-width: 1200px) {
  :root {
    --fs-1: 9.2rem;
    --fs-2: 6rem;
    --fs-3: 2.6rem;
    --fs-4: 2.4rem;

  }

  .section {
    margin-inline: 70px;
  }

  .has-scrollbar {
    margin-inline: -70px;
    padding-inline: 70px;
  }

  .has-scrollbar::-webkit-scrollbar-button {
    width: 35px;
  }

  .card-tag {
    --fs-9: 1.4rem;
    padding: 4px 10px;
  }

  .grid-list {
    row-gap: 50px;
  }

  .section.hero {
    padding-block: 50px 80px;
  }

  .hero-title {
    margin-block-end: 50px;
  }

  .top-author .avatar {
    width: 100px;
  }

  .recent .btn {
    margin-block-start: 70px;
  }

  .footer-top {
    grid-template-columns: 1fr 0.4fr 0.4fr 0.4fr 0.4fr;
  }

  .footer-brand {
    grid-column: auto;
    padding-inline-end: 100px;
  }

}

/*---------------------------------------------------------------------------- 
Configuration générale de la barre de bavigation
-----------------------------------------------------------------------------*/
.navbar {
  background-color: #e6e6e6;
  padding: 15px !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  font-weight: bold;
  color: #0b9dd7 !important;
  /* bleu Bootstrap */
  font-family: "Quicksand";
  font-size: 20px !important;
}

.monNav {
  background-color: #0b9dd7;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 14px;
  transition: background-color 0.3s;
}

.navbar.fixed-top {
  z-index: 1030;
}


/* ---------------------------------------------------------------
Configure le volets des détails sur les stars 
ça va être un peu lon puisque je fais ça avec les identifiants
----------------------------------------------------------------*/
/* Mr Wague*/
#myDiv {
  position: fixed;
  /* ou absolute */
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 9999;
  pointer-events: none;
  /* désactive les clics quand caché */
}

#myDiv.active {
  transform: translateY(0%);
  opacity: 1;
  pointer-events: auto;
}

/* M. Noumbi */
#myDiv1 {
  position: fixed;
  /* ou absolute */
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 9999;
  pointer-events: none;
  /* désactive les clics quand caché */
}

#myDiv1.active {
  transform: translateY(0%);
  opacity: 1;
  pointer-events: auto;
}

/* Mme Boutchouang */
#myDiv2 {
  position: fixed;
  /* ou absolute */
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 9999;
  pointer-events: none;
  /* désactive les clics quand caché */
}

#myDiv2.active {
  transform: translateY(0%);
  opacity: 1;
  pointer-events: auto;
}
/* M Sema */
#myDiv3 {
  position: fixed;
  /* ou absolute */
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 9999;
  pointer-events: none;
  /* désactive les clics quand caché */
}

#myDiv3.active {
  transform: translateY(0%);
  opacity: 1;
  pointer-events: auto;
}

/* M. Yimo */
#myDiv4 {
  position: fixed;
  /* ou absolute */
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 9999;
  pointer-events: none;
  /* désactive les clics quand caché */
}

#myDiv4.active {
  transform: translateY(0%);
  opacity: 1;
  pointer-events: auto;
}

/* M. Chedjou*/
#myDiv5 {
  position: fixed;
  /* ou absolute */
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 9999;
  pointer-events: none;
  /* désactive les clics quand caché */
}

#myDiv5.active {
  transform: translateY(0%);
  opacity: 1;
  pointer-events: auto;
}

/* M. Tame*/
#myDiv6 {
  position: fixed;
  /* ou absolute */
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 9999;
  pointer-events: none;
  /* désactive les clics quand caché */
}

#myDiv6.active {
  transform: translateY(0%);
  opacity: 1;
  pointer-events: auto;
}

/* Mme sofina*/
#myDiv7 {
  position: fixed;
  /* ou absolute */
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 9999;
  pointer-events: none;
  /* désactive les clics quand caché */
}

#myDiv7.active {
  transform: translateY(0%);
  opacity: 1;
  pointer-events: auto;
}

/* Dr Fankem*/
#myDiv8 {
  position: fixed;
  /* ou absolute */
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 9999;
  pointer-events: none;
  /* désactive les clics quand caché */
}

#myDiv8.active {
  transform: translateY(0%);
  opacity: 1;
  pointer-events: auto;
}

/* Mme Minette*/
#myDiv9 {
  position: fixed;
  /* ou absolute */
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 9999;
  pointer-events: none;
  /* désactive les clics quand caché */
}

#myDiv9.active {
  transform: translateY(0%);
  opacity: 1;
  pointer-events: auto;
}

/* Ta'a line*/
#myDiv10 {
  position: fixed;
  /* ou absolute */
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 9999;
  pointer-events: none;
  /* désactive les clics quand caché */
}

#myDiv10.active {
  transform: translateY(0%);
  opacity: 1;
  pointer-events: auto;
}
/* To'o souch*/
#myDiv11 {
  position: fixed;
  /* ou absolute */
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 9999;
  pointer-events: none;
  /* désactive les clics quand caché */
}
#myDiv11.active {
  transform: translateY(0%);
  opacity: 1;
  pointer-events: auto;
}

/* Un dernier*/
#myDiv12 {
  position: fixed;
  /* ou absolute */
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 9999;
  pointer-events: none;
  /* désactive les clics quand caché */
}
#myDiv12.active {
  transform: translateY(0%);
  opacity: 1;
  pointer-events: auto;
}

/* Un dernier2*/
#myDiv13 {
  position: fixed;
  /* ou absolute */
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 9999;
  pointer-events: none;
  /* désactive les clics quand caché */
}

#myDiv13.active {
  transform: translateY(0%);
  opacity: 1;
  pointer-events: auto;
}

/* Un dernier3*/
#myDiv14 {
  position: fixed;
  /* ou absolute */
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 9999;
  pointer-events: none;
  /* désactive les clics quand caché */
}
#myDiv14.active {
  transform: translateY(0%);
  opacity: 1;
  pointer-events: auto;
}







.close-btn {
  background: transparent;
  border: none;
  font-size: 16px;
  color: #333;
  float: right;
  cursor: pointer;
}
.cafe {
  background-color: #0eb34d;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  font-family: 'Quicksand';
  line-height: 1.3;
  padding: 11px 25px;
  border-radius: 50px;
}

/*Permet d'afficher le card pour le café*/
  
    .overlay {
      position: fixed;
      top: 0; left: 0;
      width: 100vw; height: 100vh;
      background-color: rgba(0, 0, 0, 0.5);
      display: none;
      justify-content: center;
      align-items: center;
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: 999;
    }

    .overlay.show {
      display: flex;
      opacity: 1;
    }

    /* La boîte elle-même */
    .modal-box {
      background: white;
      padding: 2rem;
      border-radius: 8px;
      width: 90%;
      max-width: 400px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.3);
      transform: translateY(-30px);
      transition: transform 0.3s ease;
    }

    .overlay.show .modal-box {
      transform: translateY(0);
    }

    .close-btn {
      background: rgb(29, 167, 209);
      color: white;
      border: none;
      padding: 0.5rem 1rem;
      margin-top: 1rem;
      cursor: pointer;
    }


.btn:is(:hover, :focus) {
  background-color: #000;
}

@media (max-width: 576px) {
  .monNav {
    padding: 4px 10px;
    font-size: 13px;
  }
}