body {
	margin: 0
}

.fullscreen {
   background-image: url('background.jpg');
   background-repeat: no-repeat;
   background-position: bottom;
   background-size: cover; 
   width: 100vw;
   height: 100vh;
   display: flex; 
   justify-content: center; 
}
.main-text {
	position: absolute;
	text-align: center;
	padding-top: 7%;
  margin: 0 auto;

}
.main-text h1 {
	font-family: 'Archivo Black', sans-serif;
    font-size: 6em;
    color: #ff0046;
    text-align: center;
    margin: 20px;
    text-transform: uppercase;
    font-weight: normal;
    line-height: 0.9;
}
.main-text strong {
	font-family: 'IBM Plex Mono', monospace;
	text-transform: uppercase;;
	font-size: 1.6em;
	line-height: 1.6;
	color: #ff0046;
}
.main-text p, a {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1.2em;
    color: #000000;
    line-height: 1.5;
    margin-bottom: 0;
    margin-top: 0;
    text-decoration: none;
}
.credit {
	position: absolute;
    bottom: 5%;
    font-size: 0.5em;
}
@media only screen and (min-width: 1025px) {
.credit-m {
  display: none;
}
}

@media only screen and (max-width: 1024px) and (min-width: 500px) {
.fullscreen {
	background-position: bottom left 75%;
	width: 100vw;
   	height: 100vh;
}
.main-text {
	padding-top: 1%
}
.main-text h1 {
	font-size: 4em;
	margin-top: 10px;
}
.main-text strong {
	font-size: 1.2em;
}
.main-text p, a {
	font-size: 0.8em;
}
.credit {
    display: none;
}
.credit-m {
  font-size: 0.4em;
}
}

@media only screen and (max-width: 499px) {
.fullscreen {
	background-position: bottom left 75%;
	width: 100vw;
   	height: 90vh;
}
.main-text {
    padding-top: 10%;
}
.main-text h1 {
  font-size: 3em;
  margin: 10px;
}
.main-text strong {
	font-size: 1.4em;
}
.main-text p, a {
	font-size: 1em;
}
.credit {
    display: none;
}
.credit-m {
  font-size: 0.3em;
}
}