html, body {
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    background-color: var(--background);
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 24px;
  width: 100%;
  background-color: var(--background);
  border-bottom: solid 1px var(--background-element-light);
  position: relative;
}

.logoAdmin {
    width: 238px;
    height: 74px;
}

.logo {
    width: 138px;
    height: 74px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 60px;
  margin: 0;
  padding: 0;
}

.dashboard {
  display: flex;
  align-items: center;
  gap: 60px;
  margin: 0;
  padding: 0;
  font-size: 62px;
}

.nav-list li {
  list-style: none;
}

.connection-section {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0px 0px;
}

.nav-cta {
  display: inline-block;
  border: none;
  background-color: var(--primary);
  border-radius: 8px;
  padding: 12px 48px;
  color: var(--white);
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  transition: all ease 0.5s;
}

.nav-profils {
  display: inline-block;
  border: none;
  width: 32px;
  height: 32px;
}

.nav-cta:hover {
  opacity: 0.7;
}


.burger {
  display: none;
  cursor: pointer;
  user-select: none;
}

.logo-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

button {
    border: none;
    background-color: var(--primary);
    border-radius: 8px;
    padding: 12px 48px;
    color: var(--white);
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-size: 16px;
    transition: all ease 0.5s;
    cursor: pointer;
}

button:hover {
    background-color: var(--primary);
    opacity: 0.7;
}

a {
    text-decoration: none;
    color: var(--white);
}

.layout-font {

    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-size: 24px;
    font-style: normal;
    
}

.footer-font {

    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    color: var(--gray);
    
}

footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 32px 20px;
    background-color: var(--background-element);
     
}

.social-media {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 0px 0px;
}

.link-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
}

.image-footer {
    width: 146px;
    height: 45px;
}

.social {
  width: 32px;
  height: 32px;
}
@media (max-width: 768px){
  .burger{
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--background);
    border-bottom: solid 1px var(--background-element-light);
    padding: 16px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    z-index: 1000;
  }

  .nav.is-open {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
    padding: 12px 16px;
  }

  .site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px;
  width: 100%;
  background-color: var(--background);
  border-bottom: solid 1px var(--background-element-light);
  position: relative;
  }

  footer {
    padding: 16px 16px;
    gap: 16px;
    flex-direction: column;
   }

   .social-media {
    gap: 8px;
    }



    .image-footer {
    width: 78px;
    height: 21px;
    }

    .link-section {
    gap: 8px;
    flex-direction: column;
    }

    .footer-font {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    color: var(--gray);
    
    }

    .layout-font {

    font-weight: 700;
    font-size: 16px;
    font-style: normal;
    
    } 
    
    .social {
    width: 16px;
    height: 16px;
    }

}