html {
    position: relative;
    min-height: 100%;
}
body {
    margin-bottom: 28px;
}
footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 28px;
    background-color: #444444;
    color: #eeeeee;
    font-size: 12px;
}
footer p {
    line-height: 28px;
    margin: 0;
}
footer a {
    color: #ffffff;
    border-bottom: 1px dotted #aaaaaa;
}
footer a:hover {
    text-decoration: none;
    border-bottom-color: #ffffff;
    color: #afd9ff;
}

#results {
    border: 1px solid #cccccc;
    border-radius: 8px;
    height: 80px;
    padding: 20px;
    display: none;
    text-align: center;
    font-size: 30px;
    overflow: hidden;
}
#results ul {
    margin: 50px 0 0 0;
    padding: 0;
    list-style: none;
}
#results li {
    margin-top: 20px;
}

#chooser {
    margin-top: 20px;
    display: none;
}
#reminder {
  float: right;
  padding: 0.2rem 0.5rem;
  font-weight: bold
}

.row{
    margin-top: 3%;
}

.label-warning{
    background-color: #4169e1;
}

.text-center{
    text-align: left;
}

.form-control{
    border-radius: 8px;
}

 /************ Square *************/

 .square {
    transition: 1s;
    margin-left: 90px;
    margin-top: 100px;
    border: 5px solid #000;
    letter-spacing: normal;
    line-height: normal;
    /* Color & Background */
    color: rgb(0, 0, 0);
    /* Box */
    height: 50px;
    width: 50px;
    /* Positioning */
    position: relative;
    /* Effects */
    transform: matrix(6.12323e-17, -1, 1, 6.12323e-17, 0, 0);
    transition: transform 0.4s ease-in-out 0s;
    box-sizing: content-box;
    margin-bottom: 10px;
    border-radius: 10px;
  }
  
  .square:hover {
    transition: 0.5s;
    transform: rotate(-180deg);
  }
  
  @media screen and (max-width: 736px) {
    .square {
        margin-left: 10px;
        margin-bottom: 20px;
    }
    .container {
        margin-top: 32%;
        width: 90%;
    }
  }