/* Variables
////////////////////////// */

:root {
  --base-font: "Anek Bangla", sans-serif;
  --alternative-font: "PT Serif", Georgia, serif;

  /*--color-1: rgb(210,88,145);  /* blush (rose) */
  --color-1: rgb(255,88,125);  /* blush (rose) */
  --color-2: rgb(58,161,146);  /* turqoise */
  --color-3: rgb(75,115,131);  /* air-blue */
  --gray-1:  rgb(34,34,34);    /* dark */
  --gray-2:  rgb(48,48,48);    /* medium dark*/
  --gray-3:  rgb(66,66,66);    /* medium light */
  --gray-4:  rgb(219,219,219); /* light */

  --light-font-color: rgb(255,255,255);
  --dark-font-color:  rgb(48,48,48);

  --base-link-color: rgb(210,88,145);
  --visited-link-color: rgb(210,88,145);
  --alt-link-color : rgb(210,88,145);

}


/* Basics
////////////////////////// */

*, html {
    box-sizing: border-box;
}

html {
  font-size: 62.5%;
  font-family: var(--base-font);
  font-weight: 200; }

body {
  font-size: 1.6rem;
  line-height: 2.018;
  min-width: 98rem;
  max-width: 120rem;
  margin: auto;
  color: var(--dark-font-color);
  background-color: var(--gray-4);
  padding: 0; }

@media (max-width: 684px) {
  body {
    font-size: 1.53rem; } }

@media (max-width: 382px) {
  html { font-weight: 400; }
  body {
    font-size: 1.35rem; } }

section {}

hr {
    margin: 1.2rem 0;
    border: none;
    width: 10rem;
    border-bottom: 1.2rem solid var(--gray-4); }

/* Typography
////////////////////////// */

h1, h2, h3, h4, h5, h6 {
  line-height: 1.1;
  font-family: var(--font);
  font-weight: 500;
  margin-top: 4rem;
  margin-bottom: 4rem;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-word; }

h1 {
  font-family: var(--alternative-font);
  font-size: 2.35em; }

h2 {
  font-family: var(--alternative-font);
  font-size: 2.00em; }

h3 {
  font-family: var(--alternative-font);
  font-size: 1.75em; }

h4 {
  font-size: 1.5em; }

h5 {
  font-size: 1.25em; }

h6 {
  font-size: 1em; }

p {
  margin: 0;
  padding-bottom: 2.5rem; }

small, sub, sup {
  font-size: 75%; }

a {
  text-decoration: none;
  color: var(--base-link-color); }
  a:hover {
    color: var(--alt-link-color); }
  a:visited {
    color: var(--visited-link-color); }

blockquote {
  /*margin-top: 0px;*/
  margin-left: 0px;
  margin-right: 0px;
  padding-left: 1em;
  padding-top: 0.8em;
  padding-bottom: 0.8em;
  padding-right: 0.8em;
  border-left: 5px solid var(--color-1);
  margin-bottom: 2.5rem;
  color: var(--dark-font-color);
  background-color: var(--gray-3); }

blockquote p {
  margin-bottom: 0; }

q {
    background-color: var(--gray-3); }

pre {
  color: var(--dark-font-color);
  background-color: var(--gray-3);
  display: block;
  padding: 1em;
  overflow-x: auto;
  margin-top: 0px;
  margin-bottom: 2.5rem; }

code {
  font-size: 0.9em;
  padding: 0 0.5em;
  color: var(--dark-font-color);
  background-color: var(--gray-3);
  white-space: pre-wrap; }

pre > code {
  padding: 0;
  background-color: transparent;
  white-space: pre; }

/* Data structures
////////////////////////// */

ul {
  list-style: none;
  padding-left: 1.4em;
  margin-top: 0px;
  margin-bottom: 2.5rem; }

li {
  margin-bottom: 0.4em; }

table {
  text-align: justify;
  width: 100%;
  border-collapse: collapse; }

table caption, table td, table th {
  padding: 0.5em;
  text-align: left;
  vertical-align: top;
  padding: 0.5em;
  border-bottom: 1px solid var(--gray-3); }
}

/* Media
////////////////////////// */

img, video {
  height: auto;
  max-width: 100%;
  margin-top: 0px;
  margin-bottom: 2.5rem; }


/* Form elements
////////////////////////// */

input, textarea {
  border: 1px solid var(--gray-3); }
  input:focus, textarea:focus {
    border: 1px solid var(--color-1); }

textarea {
  width: 100%; }

button, input[type="submit"], input[type="reset"], input[type="button"], a[class="button"] {
  margin: 0;
  display: inline-block;
  padding: 5px 10px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  background-color: var(--color-1);
  color: var(--light-font-color);
  border-radius: 1px;
  border: 1px solid var(--color-1);
  cursor: pointer;
  box-sizing: border-box; }
  button[disabled], input[type="submit"][disabled], input[type="reset"][disabled], input[type="button"][disabled], a[class="button"][disabled] {
    cursor: default;
    opacity: .5; }
  button:hover:enabled, input[type="submit"]:hover:enabled, input[type="reset"]:hover:enabled, input[type="button"]:hover:enabled, a[class="button"]:hover:enabled {
    /*background-color: var(--accent-alt);
    border-color: var(--accent-alt);*/
    outline: 0; }

textarea, select, input {
  color: var(--dark-font-color);
  padding: 6px 10px;
  /* The 6px vertically centers text on FF, ignored by Webkit */
  margin-bottom: 10px;
  color: var(--dark-font-color);
  background-color: var(--gray-3);
  border: 1px solid var(--gray-3);
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box; }
  textarea:focus, select:focus, input:focus {
    border: 1px solid var(--color-1);
    outline: 0; }

input[type="checkbox"]:focus {
  outline: 1px dotted var(--color-1); }

label, legend, fieldset {
  display: block;
  margin-bottom: .5rem;
  font-weight: 600; }
  /*label sub, label sup {
    color: var(--gray-3); }*/


/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    body {
      min-width: unset;
      max-width: unset;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {}
