Spaces:
Runtime error
Runtime error
File size: 798 Bytes
d7ad40d 4be3c48 d7ad40d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
<html>
<head>
<style>
.container {
background-image: url("img_underground_clown.jpg.png");
background-size: cover;
height: 100vh;
text-align: center;
color: dark slate-blue;
}
.title {
font-size: 36px;
padding-top: 50px;
}
.subtitle {
font-size: 24px;
padding-top: 20px;
}
.story-box {
background-color: baby-blue;
border: 2px solid dark-slate-blue;
padding: 20px;
margin: 50px auto;
width: 80%;
}
</style>
</head>
<body>
<div class="container">
<h1 class="title">Stu-Studios</h1>
<h2 class="subtitle">Clowning</h2>
<div class="story-box">
{{ story }}
</div>
</div>
</body>
</html>
|