39 lines
826 B
CSS
39 lines
826 B
CSS
body {
|
|
margin: 0;
|
|
height: 100vh;
|
|
width: 100vw;
|
|
background: no-repeat 50%/cover url("https://user-images.githubusercontent.com/45284685/62537388-dfb5be80-b882-11e9-952f-cb2b88f49425.jpeg");
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
svg {
|
|
display: block;
|
|
width: 40vw;
|
|
height: 30.4vw;
|
|
}
|
|
.svgWrap {
|
|
border-radius: 3vw;
|
|
box-shadow: 0px 0px 5vw 2.4vw rgba(247,179,194,0.25),
|
|
3vw 3vw 4.8vw 1.4vw rgba(247,179,194,0.35),
|
|
0px 5vw 3vw -3vw rgba(216,157,170,0.9),
|
|
inset 0px 0px 5vw 2.4vw rgba(247,179,194,0.3),
|
|
inset 3vw 3vw 4.8vw 1.4vw rgba(247,179,194,0.35),
|
|
inset 0px 5vw 2.7vw -3vw rgba(216,157,170,1);
|
|
}
|
|
.credits {
|
|
position: fixed;
|
|
bottom: 0;
|
|
right: 0;
|
|
font-size: 14px;
|
|
}
|
|
p {
|
|
text-align: right;
|
|
margin: 2px;
|
|
color: #D4394F;
|
|
}
|
|
a {
|
|
color: #040E41;
|
|
}
|
|
|