/* style.css (or whatever you named your stylesheet) */

.attribution {
    font-size: 11px;
    text-align: center;
  }
  
  .attribution a {
    color: hsl(228, 45%, 44%);
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  @font-face {
    font-family: 'Figtree';
    src: url('./assets/fonts/static/Figtree-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Figtree';
    src: url('./assets/fonts/static/Figtree-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
  }
  body{
    display:flex;
    background-color: #f5d04e;
    font-family: 'Figtree', sans-serif ;
    justify-content: center;
    align-items: center;
    padding: 20px;
    min-height: 100vh;

  }

  .container{
    background: #fff;
    width: 400px;
    height: 600;
    border-radius: 12px;
    border: 1px solid #000;
    box-shadow: 10px 10px #000;
    display: flex;
    flex-direction: column;
    padding: 30px;
    gap: 20px;
   
  }
  .img{
    border-radius: 12px;
  }

  .Learn{
    background: #f5d04e;
    width: 90px;
    
    padding: 10px;
    font-weight: bolder;
    border-radius: 5px;
    
  }

  .container h5{
    font-size: 25px;
  }

  .container .lang{
    color: #a7a7a7;
  }

  .container .fig{
    display: inline-flex;
    gap: 10px;
    align-items: center;
  }

  .fig .greg{
    font-weight: bold;
  }