:root {
    --white: #fff;
    --black: #000;
    --main: #fe5500;
    --back: #f8eaba;
    --font: orange;
    --second: orange;
  }
  

body{
    background-color: var(--back);
}

@font-face{
    font-family: "Cherl";
    src: url("./fonts/Cherl.ttf") format("truetype");
  }

h1{
    font-family: Cherl;
}

.paraf{
    color: #000;
    font-size: 16px;
    font-family: sans-serif;
    line-height: 25px;
    font-weight: 700;
}

.separator_blue {
    width: 100vw;
    height: 80px;
    background-color: #faa501;
    border-top: 3px solid #000;
    border-bottom: 0 solid #000;
    position: relative;
}

.separator_blue, .separator_in {
    justify-content: center;
    align-items: flex-end;
    display: flex;
}

.separator_in {
    width: 100%;
    height: 50%;
    background-color: var(--main);
}

.separator_in2 {
    width: 100%;
    height: 50%;
    background-color: #fcd52d;
}

.fp_box{
    height: auto;
    background-color: #fff;
    border: 3px solid #000;
    border-radius: 20px;
    flex-flow: column;
    justify-content: center;
    margin-top: 50px;
    padding: 30px;
    display: flex;
    position: relative;
}

.navbar{
    background-color: var(--white);    
}

.navbar a,.navbar button{
    color:black;
}