html, body {
    width: 100%;
    height: 100%;
}

body{
    color: #fff;
    background-color: #474747;
    font-size: 1.25rem;
    line-height: 1;
    margin: 0px auto;
}

.font-normal {
    font-size: 1.25rem;
    line-height: 1;
}

.font-big-normal {
    font-size: 2rem;
    line-height: 1;
}

.font-big-bold {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
}

.btn-primary {
    background-color: #E3B53C;
}

.btn-default {
    background-color: #CECECE;
}

.card {
    background-color: #474747;
    font-size: 1.25rem;
    line-height: 1;
    margin-top: 10%;
}

.invalid-feedback {
    color: red;
    padding: 0.5rem;
    display: block;
}
.card-header {
    text-align: center;
}
.card-title {
    font-size: 2rem;
}
.card-body h1 {
    font-size: 1.5rem;
}

.plain-link, .plain-link:hover {
    text-decoration: none;
    color: #fff;
}

.btn-xxl {
    font-size: 2rem;
    font-weight: bold;
}

/* Dropdown Button */
.dropbtn {
    padding: 0.55em 1em;;
    border: none;
    background-color: #E8ECEF;
  }
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
    position: relative;
    display: inline-block;
    font-size: 1.25rem;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #E8ECEF;
    min-width: 100px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    color: black;
    padding: 14px;
    text-decoration: none;
    display: block;
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {background-color: #ddd;}
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {display: block;}
  
  /* Change the background color of the dropdown button when the dropdown content is shown */
  .dropdown:hover .dropbtn {background-color: #E0CDC8;} 
  
.footer, .small-footer {
    position: none;
    margin-bottom: 5px;
    padding: 0.3rem 0;
    width: 100%;
    background-color: #fff;
    color: #000;
    font-size: 0.875rem;
}

.site {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

.site-content {
    flex: 1;
}