html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* The alert message box */
.alert {
    padding: 10px;
    background-color: #ea3838; /* Red */
    color: white;
    margin: 10px;
    margin-top: 0px;
    border-radius: 20px;
}

/* The alert message box */
.warnAlert {
    padding: 10px;
    background-color: #f4a460; /* Orange */
    color: white;
    margin: 10px;
    margin-top: 0px;
    border-radius: 20px;
}

/* The alert message box */
.shuffleAlert {
    padding: 10px;
    background-color: #2EBD59; /* Green */
    color: white;
    margin: 10px;
    margin-top: 0px;
    border-radius: 20px;
}

/* The close button */
.closebtn {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

    /* When moving the mouse over the close button */
    .closebtn:hover {
        color: black;
    }
