41 lines
547 B
CSS
41 lines
547 B
CSS
html {
|
|
font-size: 16pt;
|
|
}
|
|
|
|
body {
|
|
color: white;
|
|
background-image: url(brandon-siu-nI7knd5sQfo-unsplash.jpg);
|
|
background-size: cover;
|
|
background-position: bottom center;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.header {
|
|
position: absolute;
|
|
text-align: right;
|
|
right: 2rem;
|
|
top: 1rem;
|
|
}
|
|
|
|
.title {
|
|
font-size: 2rem;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.artists {
|
|
margin-top: .5rem;
|
|
}
|
|
|
|
@media screen and (max-width: 1000px) {
|
|
html {
|
|
font-size: 24pt;
|
|
}
|
|
|
|
.header {
|
|
left: 0;
|
|
right: 0;
|
|
top: 8rem;
|
|
width: 100%;
|
|
text-align: center;
|
|
}
|
|
} |