@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,600&display=swap');

/**************************************/
/**************** Root ****************/
/**************************************/
:root {
  --documentation: white;
  --navbar: white;
}

body {
    font-family: 'Open Sans', sans-serif;
}

h1 {
    color: #0c1242;
}

a {
    color: #3b82f6;
}

a:hover {
    color: #2563eb;
}

.alert.is-info {
   background: #3b82f6;
}

.alert.is-info a {
    color: #fff;
    text-decoration: underline;
}

.alert.is-info a:hover {
    color: #dbeafe;
    text-decoration: underline;
}

.alert.is-warning {
    background: #ef4444;
}

/**************************************/
/*************** Sidebar **************/
/**************************************/
.sidebar {
    border: none;
    background: #eeeef3;
    color: #111111;
}

.sidebar ul li h2 {
    color: #111111;
}

.sidebar ul li ul li a {
    color: #111111;
}

.documentation p {
    margin-bottom: 1rem;
}
