48 lines
677 B
CSS
48 lines
677 B
CSS
body{
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
|
|
margin: 0%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
background-color: black;
|
|
|
|
height: 100%;
|
|
}
|
|
|
|
header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
width: 100%;
|
|
|
|
background-color: rgba(0,0,0,0.2);
|
|
|
|
backdrop-filter: blur(5px);
|
|
}
|
|
|
|
img {
|
|
height: 2em;
|
|
margin: 1em;
|
|
}
|
|
|
|
#glow {
|
|
position:absolute;
|
|
z-index: -1;
|
|
|
|
top: -50%;
|
|
|
|
width: 100%;
|
|
height: 500px;
|
|
|
|
background-image: radial-gradient(rgba(255, 77, 0, 0.5) 0%, rgba(0,0,0,0)70%);
|
|
}
|
|
|
|
h2 {
|
|
color: white;
|
|
}
|
|
main{
|
|
padding: 15em 0 15em 0;
|
|
height: 80%;
|
|
} |