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

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

.card {
    background-color: #fff;
    margin-top: 5%;
    font-size: 1.25rem;
}

.card-header {
    text-align: center;
}

.card-title {
    font-size: 2rem;
}

.card-body h1 {
    font-size: 1.5rem;
}

.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;
}

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

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

.footer {
    position: absolute;
    bottom: 2px;
    margin-top: 20px;
    padding: 0.1rem 0;
    padding-bottom: 2px;
    width: 100%;
    color: #000;
}

 /* 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;} 
