40 lines
726 B
CSS
40 lines
726 B
CSS
body{
|
|
background-image: url("../images/Shreveport.jpg");
|
|
background-color: black;
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
background-position: center;
|
|
background-attachment: fixed;
|
|
}
|
|
|
|
.title{
|
|
font-family: "Press Start 2P", system-ui;
|
|
text-align: center;
|
|
font-size: 3.5em;
|
|
padding-top: 1em;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.off-white-title{
|
|
background-color: rgb(245,245,245,0.8);
|
|
width: 80%;
|
|
margin: 0.5em auto;
|
|
padding: 0.5em;
|
|
border-radius: 0.25em;
|
|
max-width: 10em;
|
|
}
|
|
|
|
.off-white-body{
|
|
background-color: rgb(245,245,245,0.8);
|
|
width: 80%;
|
|
margin: 0.5em auto;
|
|
padding: 0.5em;
|
|
border-radius: 0.25em;
|
|
max-width: 50em;
|
|
}
|
|
|
|
.intro{
|
|
text-align: center;
|
|
font-size: 1.2em;
|
|
}
|