

:root {
    --whiteColor: #FFFFFF;
    --blackColor: #191919;
    /*--dark: #191919;*/
    /*--light: #FAB162;*/

    /* --dark: #4F6D7A;
    --light: #E8DAB2; */
    
    --dark: #42502c;
    --light: #526b2b;
}

@font-face {
    font-family: braind-yerevan;
    src: url('../fonts/braind-yerevan.otf');
}

@font-face {
    font-family: square;
    src: url('../fonts/square.ttf');
}

* {
    font-family: 'braind-yerevan', sans-serif;
    font-style: normal;

    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

*::-webkit-scrollbar {
    /* background-color: #fff; */
    background-color: transparent;
    width: 14px;
}

*::-webkit-scrollbar-track {
    /* background-color: #fff; */
    background-color: transparent;
}

*::-webkit-scrollbar-thumb {
    background-color: #babac0;
    border-radius: 15px;
    border: 4px solid #fff;
}

*::-webkit-scrollbar-button {
    display: none;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--whiteColor);
}

a {
  color: inherit;
}

a:focus {
	outline: none !important;
}

a:hover {
	text-decoration: none;
}

input, textarea {
    border: none;
    background-color: rgba(255, 255, 255, 50%);
    border-radius: 2px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 7px 29px 0px;
    padding: 5px;

    transition: .3s;

    outline: none;
    resize: none;
}

input[type="submit"] {
    cursor: pointer;
}

input:focus, textarea:focus {
    background-color: rgba(255, 255, 255, 100%);
}

input[type="submit"]:hover {
    background-color: rgba(255, 255, 255, 100%);
}

hr {
    color: var(--dark);
    margin: 0;
}