32 lines
598 B
CSS
32 lines
598 B
CSS
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');
|
|
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
background-color: #121212;
|
|
height: 100vh;
|
|
}
|
|
|
|
.backgroundImage {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
filter: blur(10px);
|
|
pointer-events: none;
|
|
}
|
|
|
|
.welcome {
|
|
color: white;
|
|
position: relative;
|
|
left: 30px;
|
|
top: 30px;
|
|
font-size: 60px;
|
|
font-family: 'Poppins', sans-serif;
|
|
} |