@import url('https://fonts.googleapis.com/css2?family=Staatliches&display=swap');

/***************DEFAULTS*****************/

:root {
  --grey:rgb(33, 31, 32);
  --orange:#fba51e;
  --light-grey:#e1e1e1;
  --red: #648767;

  --ff-titles: "Staatliches", sans-serif;
  --ff-text: "Roboto", sans-serif;

  --borders-one: 4px;
  --borders-two: 8px;


  --fs-xxl: clamp(3rem, 6vw + 1rem, 12rem);
  --fs-xl: clamp(3rem, 4vw + 1rem, 10rem);
  --fs-xs: clamp(1rem, 1vw + 1rem, 6rem);
  --fs-s: clamp(1rem, 1vw + 1rem, 2rem);
  --fs-titles: 2rem;
  --fs-sub-tittles: 1.6rem;
  --fs-highlights: 1.2rem;
  --fs-text: 1.1rem;
}
* {
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
  font-family: var(--ff-text);
  list-style: none;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: var(--roboto400);
}

*::before,
*::after {
  box-sizing: border-box;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #808080; 
  border-radius: 5px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--orange); 
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgb(184, 120, 18); 
}

input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

body, html {
  margin: 0;
  overflow-x: hidden;
  padding: 0;
}
h1, h2, h3, h4, h5, h6 {
  color: var(--black);
}

.wrapper{
  display: flex;
  flex-direction: row;
  width: 100%;
}
.body__wrapper{
  width: calc(100% - 200px);
  background-color: #e1e1e1;
  background: url(../media/concrete-wall.png) repeat #e1e1e1;
}
.highlights{
  color: var(--orange);
  font-family: inherit;
  font-size: inherit;
}
/****************************************/

/***************KEYFRAMES****************/



/***************************************/



/*************MEDIAQUERIES**************/

@media (max-width: 1483px) { }

@media (max-width: 1280px) { }

@media (max-width: 1150px) { }

@media (max-width: 950px) {/*2 REM padding*/
.wrapper{
  flex-direction: column-reverse;
}
.body__wrapper{
  width: 100%;
}
}
@media (max-width: 768px) { }

@media (max-width: 576px) { /*1 REM padding*/}

@media (max-width: 480px) { }

@media (max-width: 455px) { }

@media (max-width: 350px) { }

/**************************************/