/* general styles */

/* @font-face { */
/* font-family: "";
  src: url("") format("truetype"); */
/* Add more formats if necessary */
/* } */

/* /* @font-face {  */
/* font-family: "";
  src: url("") format("truetype"); */
/* Add more formats if necessary */
/* } */

@import url("https://fonts.googleapis.com/css2?family=Averia+Sans+Libre:wght@300;400;700&display=swap");

:root {
  /* Font Family */
  --ff-heading: "Averia Sans Libre", sans-serif;
  --ff-body: "Averia Sans Libre", sans-serif;

  /* Font size */
  --fs-little: 0.707rem;
  --fs-small: 1.207rem;
  --fs-normal: 1.6rem;
  --fs-medium: 4rem;
  --fs-large: 6rem;
  --fs-xlarge: 8rem;
  /* --fs-display: 6.253rem; */

  --fw-light: 300;
  --fw-regular: 400;
  --fw-bold: 700;

  /* Line Height */
  --lh-100: 1;
  --lh-200: 1.2;
  --lh-400: 1.6;
  --lh-600: 1.8;

  /* Letter spacing */
  --ls-small: 0.5px;
  --ls-large: 0.75px;

  /* Color */
  --color-primary: #001d49;
  --color-white: #ffffff;
  --color-secondary: #f5b41a;
  --color-dark: #16161e;
  --color-darken: #0e0e12;

  /* Shadows */
  --shadows-light: ;
  --shadows-heavy: ;

  /* Border Radius */
  --br-small: 1.923rem;
  --br-large: 3.43rem;

  /* 8 Unit spacing */
  --spacing-200: 1rem;
  --spacing-300: 1.5rem;
  --spacing-400: 2rem;
  --spacing-500: 3rem;
  --spacing-600: 6rem;
  --spacing-700: 9rem;
  --spacing-800: 12rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  width: 100vw;
  overflow-x: hidden;

  font-family: var(--ff-body);
  font-size: var(--fs-normal);
  color: var(--color-);
  background-color: var(--color-);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a:link,
a:active,
a:visited {
  text-decoration: none;
  font: inherit;
  color: inherit;
  display: inline-block;
}

ul {
  list-style: none;
}

button,
input {
  outline: none;
  border: none;
  font: inherit;
  background-color: inherit;
}

input::placeholder {
  color: inherit;
  font-style: inherit;
}

@keyframes click {
  0% {
    transform: rotate(0deg) scale(0%);
  }

  100% {
    transform: rotate(360deg) scale(100%);
  }
}

.click-image img,
.project-grid-click-image img {
  animation: click 2s infinite;
}

@keyframes bounce {
  0% {
    transform: scale(50%);
  }

  50% {
    transform: scale(100%);
  }

  70% {
    transform: scale(70%);
  }

  100% {
    transform: scale(30%);
  }
}

.click-btn img,
.mar-auto-left img {
  animation: bounce 3s infinite;
}
