@font-face {
    font-family: 'Cravelo DEMO';
    src: url('webfonts/Cravelo.otf')
}

@font-face {
    font-family: 'Architect-Bold';
    src: url('webfonts/Architect.ttf')
}

@font-face {
    font-family: 'Unicorn Scribbles';
    src: url('webfonts/UnicornScribbles-eLmg.ttf')
}

@font-face {
    font-family: 'Candara';
    src: url('webfonts/candara.ttf')
}

:root {
    --main-orange: #FFCDB2;
    --main-pink: #E5989B;
    --main-grey: #6D6875;
    --darker-grey:#534F5A;

}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5{
    font-family: 'Unicorn Scribbles';
    font-weight: bold!important;
}

body, .navbar{
    font-family: 'Candara'!important
}

.navbar{
    border:solid 4px var(--main-orange);
    background-color:var(--darker-grey)!important
}

body{
    background:var(--main-grey)!important;
    color:#FFFFFF!important;
    overflow-x: hidden;
}

a{
    color:var(--main-pink)!important;
    text-decoration:none!important;
}

.br-30px{
    border-radius: 30px!important;
}

.navbar-brand{
    font-size: 56px!important
}

.breadcrumb{
    text-align:center;
    justify-content: center;
}

.bg-faded{
    opacity: 50%
}

.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 5% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
   max-width: 600px;
  width: 80%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}