/* CSS Document */
:root{
    --orange-bc:#F9964D;
    --light-gray-bc: #EFF3F7;
}
body{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    -webkit-tap-highlight-color: rgb(0, 0, 0,0);
    margin: 0;
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    scroll-behavior: smooth;
    background: var(--light-gray-bc);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
}
body::-webkit-scrollbar{
    width: 14px;
    background-color: var(--light-gray-bc);
    border: 1px solid grey;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
}
body::-webkit-scrollbar-thumb{
    border: 1px solid grey;
    background-color: var(--orange-bc);
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
}
button{
    cursor: pointer;
    background-color: transparent;
    color: black;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    border: 0.5px solid #000;
    display: flex;
    padding: 15px 40px;
    border-radius: 30px;
    transition: 150ms linear;
    -webkit-transition: 150ms linear;
    -moz-transition: 150ms linear;
    -ms-transition: 150ms linear;
    -o-transition: 150ms linear;
    width: fit-content;
    height: fit-content;
}
@media (max-width:680px){
    button{font-size: 12px; padding: 10px 15px;}
}