// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 200 to 800

.manrope-<uniquifier> {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

.courier-prime-regular {
  font-family: "Courier Prime", monospace;
  font-weight: 400;
  font-style: normal;
}

.courier-prime-bold {
  font-family: "Courier Prime", monospace;
  font-weight: 700;
  font-style: normal;
}

.courier-prime-regular-italic {
  font-family: "Courier Prime", monospace;
  font-weight: 400;
  font-style: italic;
}

.courier-prime-bold-italic {
  font-family: "Courier Prime", monospace;
  font-weight: 700;
  font-style: italic;
}


body {
    background: #0e0e10;
    color: #f1ece1;
    padding: 15px;
}

h1, span {
    font-family: "Manrope", sans-serif;
    font-size: 40px;
    line-height: 45px;
    font-weight: lighter;
    margin: 0px;
}

p {
    font-family: "Manrope", sans-serif;
    /*text-transform: uppercase;*/
    font-size: 14px;
    color: #c5c7c4;
}

a{
	text-decoration: none;
	color:#f1ece1; 
}

a:hover{
 color:#c5c7c4;
}

.container {
    max-width: 850px;
    width: 100%;
}

.left-box {
    max-width: 100%;
    width: 500px;
    display: inline-block;
}

.right-box {
    max-width: 100%;
    width: 280px;
    float: right;
    display: inline-block;
    vertical-align: top;
}

.showMob{
	display: none;
}


@media screen and  (max-width: 800px){
body{
	padding-right: 70px;
}
h1, span {
  font-size: 28px;
  line-height: 35px;
}
.container {
    max-width: 100%;
    width: 100%;
}
.left-box,.right-box{
	display: block;
	float: none;
}
.right-box{
	padding-top: 20px;
}
.showMob{
	display: block;
}

}

@media screen and  (max-width: 600px){

}



