<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.cropped {
    width: 100%; /* width of container */
    height: 250px; /* height of container */
    overflow: hidden;

}

h1, h2, h3 {
  font-family: 'Merriweather', serif;
}

p {
  font-family: 'Montserrat', sans-serif;
}

.myButton {
	background-color:#EC1C2C;
	border:1px solid rgba(0,0,0,0.8);
	display:inline-block;
	cursor:pointer;
        border-radius:1px;
	color:white;
        font-family: 'Merriweather', serif;
	font-size:18px;
	padding:8px 26px;
	text-decoration:none;
}
.myButton:hover {
	background-color:#EC1C2C;
        color:white;
        transform: scale(1.05);
        text-decoration:underline;
}
.myButton:active {
	position:relative;
	top:1px;
}

.myButton2 {
	background-color:transparent;
	border:1px solid #EC1C2C;
	display:inline-block;
	cursor:pointer;
        border-radius:1px;
	color:#000;
        font-family: 'Merriweather', serif;
	font-size:18px;
	padding:8px 26px;
	text-decoration:none;
}
.myButton2:hover {
	background-color:#EC1C2C;
        color:white;
}
.myButton2:active {
	position:relative;
	top:1px;
}

.designer-box{
  margin:auto;
  width:80%;
  padding-top:8%;
}

.modal{
  margin-top:200px;
}

.overlay {
  position: relative;
  width:100%;
}

.image {
  opacity: 1;
  display: block;
  width: 100%;
  height: auto;
  transition: .5s ease;
  backface-visibility: hidden;
}

.middle {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
  cursor:pointer;
}

.overlay:hover .image {
  opacity: 0.6;
}

.overlay:hover .middle {
  opacity: 1;
  cursor:pointer;
}

.text {
  font-size: 16px;
  padding: 16px 32px;
}

.maincontent {
    position: relative;
    max-width: 100%;
}</pre></body></html>