﻿body {
    background-color: #232323;
    margin:0;
    font-family: "Montserrat","Avenir";
}

h1{
    color: white;
    text-align: center;
    background-color: steelblue;
    margin: 0;
    font-weight: normal;
    text-transform: uppercase;
    line-height: 1.1;
    padding: 20px 0;
}

.far{
    float: right;
    margin-right: 20px;
    font-weight: normal;
}

#ColorDisplay{
    font-size: 200%;
    
}

.square{
   width: 30%;
   background-color: purple; 
   padding-bottom: 30%;
   float: left;
   margin: 1.66%;
   border-radius: 15%;
   transition: background 0.6s;
   -webkit-transition: background 0.6s;
   -moz-transition: background 0.6s;
}

.container{
    margin: 20px auto;
    max-width: 600px;
}

#stripe{
    background-color: white;
    height: 30px;
    text-align: center;
    color: black;
}
.selected{
    background-color: steelblue;
    color: white;
}

button{
    border: none;
    background: none;
    text-transform: uppercase;
    height: 100%;
    font-weight: 700;
    color: steelblue;
    letter-spacing: 1px;
    font-size: inherit;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
   -moz-transition: all 0.3s;
   outline: none;
}

button:hover{
    color: white;
    background-color: steelblue;
}

#message{
    display: inline-block;
    width: 20%;
    font-weight: bold;
    font-size: inherit;
}

.modal{
    display: none;
    position: fixed;
    z-index: 1; 
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 95%;
}

.modalContent{
    background-color: #fefefe;
    margin:auto;
    padding: 20px;
    border: 1px solid #888;
    width: 40%;
    font-family: Arial, Helvetica, sans-serif;
    max-height: calc(100vh - 210px);
    overflow-y: auto;
}
.modalContent h1{
    font-family: "Montserrat","Avenir";
}

.close{
    font-size: 28px;
    font-weight: bold;
    float: right;
    background-color: white;
 
}

.modal h1{
    color: steelblue;
    background-color: white;
    text-align: left;
    margin-bottom: 0;
}

.modal p{
    padding-left: 20px;
    margin:0;
    margin-bottom: 20px;
}

.modal a{
    color: steelblue;
    /* text-decoration: none; */
    font-weight: bold;
}

.modal a:hover{
    color: red;
}

.modal .fas{
    color:steelblue;
}

.fab, .fas{
    color: steelblue;
    font-weight: bold;
    margin-right: 5px;
}

