html, body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  background-color: #bebebe;
}
.container {
	background-color: #ffffff;		
}
p{
	font-size: 1.2rem;
	line-height: 1.8rem;
}
a:link, a:visited, a:active{
	COLOR: #ff0000;  TEXT-DECORATION: none;
}
a:hover{
	COLOR: #ff0000;  TEXT-DECORATION: underline;
}
.center-text{
  text-align: center;
}
#models{
  display: flex;
}
.cam{
padding: 5px;
display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
}
.border{
margin: 10px;
border: 1px solid;
border-color: #cccccc;
border-radius: 5px;
}
.title{
font-size: 1.4rem;
}

.big_text{
font-size: 1.8rem !important;	
}
.btn-primary{
    color: #fff !important;
}

#spinner {
  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@media screen and (max-width: 600px) {
  .model {
	flex: 50%;
  }
}