2
Data utworzenia: 2025-01-21 07:50:58
*{
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
height: 100vh;
background-color: #222;
color: azure;
/* kanał alfa dla a to przezroczystość */
/* w 10% koloru */
background-image: url(./zdjecie.png), linear-gradient(45deg,rgba(157,190,205, 0.5) 10%, rgba(225,197,185,0.5) 50%, rgba(3225,197,185));
background-repeat: no-repeat;
background-size: cover;
}
h1 {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 120px;
text-shadow: 5px 5px #000;
}
Powrót