@font-face {
    font-family: Inter;
    src: url(fonts/Inter-Light.ttf);
    font-weight: 300;
    font-display: swap;
  }
  @font-face {
    font-family: Inter;
    src: url(fonts/Inter-Regular.ttf);
    font-weight: 400;
    font-display: swap;
  }
  @font-face {
    font-family: Inter;
    src: url(fonts/Inter-Medium.ttf);
    font-weight: 500;
    font-display: swap;
  }
  @font-face {
    font-family: Inter;
    src: url(fonts/Inter-SemiBold.ttf);
    font-weight: 600;
    font-display: swap;
  }
  @font-face {
    font-family: Inter;
    src: url(fonts/Inter-Bold.ttf);
    font-weight: 700;
    font-display: swap;
  }
  

body, *{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Inter;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

a {
    text-decoration: none;
}

strong {
    font-weight: 500;
}
