@font-face {
    font-display: swap;
    font-family: 'Handotum';
    font-style: normal;
    font-weight: 400;
    src: url('./HANDotum.woff') format('woff');
  }

/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
    box-sizing: border-box;
  }
  /* 2. Remove default margin */
  * {
    margin: 0;
  }
  /* 3. Enable keyword animations */
  @media (prefers-reduced-motion: no-preference) {
    html {
      interpolate-size: allow-keywords;
    }
  }
  body {
    /* 4. Add accessible line-height */
    line-height: 1.5;
    /* 5. Improve text rendering */
    -webkit-font-smoothing: antialiased;
    height: 100vh;
    background: #06080C;
    background: linear-gradient(180deg, rgba(6, 8, 12, 1) 0%, rgba(26, 28, 40, 1) 100%);
    font-family: 'Handotum';
    color: white;
  }
  /* 6. Improve media defaults */
  img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
  }
  /* 7. Inherit fonts for form controls */
  input, button, textarea, select {
    font: inherit;
  }
  /* 8. Avoid text overflows */
  p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
  }
  /* 9. Improve line wrapping */
  p {
    text-wrap: pretty;
  }
  h1, h2, h3, h4, h5, h6 {
    text-wrap: balance;
    font-weight: 700;
    color: #B48C44;
  }

  a {
    text-decoration: none;
    color: white;
  }

  /*
    10. Create a root stacking context
  */
  #root, #__next {
    isolation: isolate;
  }

  .container{
    gap: 10px;
    display: flex;
    height: 80vh;
  }

  #header {
    padding: 0% 20%;
    display: flex;
    align-items: center;
    height: 100px;
  }

  #sidebar {
    gap: 20px;
    display: flex;
    flex-direction: column;
    width: 180px;
    justify-content: center;
    align-items: center;
  }

  #list-recipe {
    display: flex;
    flex-grow: 0.5;
  }

  #list-ingredients {
    display: flex;
    flex-grow: 1;
  }

  .menu-icon{
    z-index: 99;
    display: flex;
    background: #222222;
    color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(180, 141, 68, 0.5);
    height: 44px;
    width: 44px;
    border-radius: 44px;
    justify-content: center;
    align-items: center;
    }

  .menu-icon.active, .menu-icon:hover {
    color: rgb(255, 255, 255);;
    background: #222222;
    background: radial-gradient(circle, rgba(68, 68, 68, 1) 0%, rgba(34, 34, 34, 1) 75%);
    }

  .menu-vl {
    border-left: 3px solid #b48d4455;
    height: 150px;
    position: absolute;
  }

  .arrow{
    display: block;
    width: 0px;
    height: 0px;
    border:10px solid transparent;
  }

  .arrow.arrow-up{
    border-bottom-color: #b48d4455;
    border-top-width: 0px;
  }

  .arrow.arrow-down{
    border-top-color: #b48d4455;
    border-bottom-width: 0px;
  }

    #sign-in {
        display: flex;
        flex-grow: 1;
        padding-left: 20%;
        align-items: center;
    }

  form{
    width: 400px;
  }

  /* Full-width inputs */
  input[type=text], input[type=password] {
    width: 100%;
    background: transparent;
    border: none;
    color: rgb(255, 255, 255);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    box-sizing: border-box;
  }
  
  /* Set a style for all buttons */
  button {
    background-color: #47853D;
    color: white;
    padding: 14px 20px;
    margin: 20px 0;
    border: none;
    cursor: pointer;
    width: 100%;
  }
  
  /* Add a hover effect for buttons */
  button:hover {
    opacity: 0.8;
  }
  
  /* Add padding to containers */
  .container {
    padding: 16px;
  }

  .error {
    color: #A61E22;
  }

  .hidden {
    display: none;
  }