/* --- Font --- */
@font-face {
  font-family: 'DM Sans';
  src: url('font/font.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}



:root{

--background: rgb(46, 46, 46);
--btn-color: rgb(255, 255, 255);
--btn-background-color: rgb(0, 95, 163);
--container-background: rgb(56, 56, 56);
--radio-color: rgb(0, 170, 255);
--font-family: "DM Sans", sans-serif;
--chat-container-background: rgb(37, 37, 37);
--auth-background-color: rgb(37, 37, 37);


}



body {

background-color: var(--background);
font-family: var(--font-family);
justify-content: center;
text-align: center;
}

.btn{

color: var(--btn-color);
background-color: var(--btn-background-color);
border-style: solid;
border-color: rgb(78, 78, 78);
font-size: 2rem;
padding: 1rem;


}

a{

text-decoration: none;



}

.custom-hr{

border-style: none;
color:aliceblue;
background: aliceblue;

}

h3{

margin: 3rem;

}