/* main.css file */
@font-face {
  font-family: SomarSans;
  src: url(../fonts/SomarSans-Bold.ttf);
  font-weight: 700;
}

@font-face {
  font-family: SomarSans;
  src: url(../fonts/SomarSans-SemiBold.ttf);
  font-weight: 600;
}

@font-face {
  font-family: SomarSans;
  src: url(../fonts/SomarSans-Medium.ttf);
  font-weight: 500;
}

@font-face {
  font-family: SomarSans;
  src: url(../fonts/SomarSans-Regular.ttf);
  font-weight: 400;
}

:root {
  --green-color: #4d7a42;
  --grey-color: #4f4f4f;
  --grey-alt-color: #7c8893;
  --black-color: #0f001a;
  --yellow-color: #fdc221;
  --orange-color: #f79321;
  --red-color: #cc0001;
}

* {
  box-sizing: border-box;
}

body {
  font-family: SomarSans, sans-serif;
  margin: 0;
}

*:focus {
  outline: none;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background-color: white;
}

::-webkit-scrollbar-thumb {
  background-color: var(--green-color);
}

.flex-row-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  color: #8a8a8a;
  margin-top: 50px;
  text-align: left;
  font-size: 14px;
}

.website-btn {
  background-color: var(--green-color);
  color: #fff;
  padding: 16px 32px;
  border-radius: 4px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 200px;
  text-align: center;
}

.padding {
  padding: 50px 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}
