Brak tytułu

Data utworzenia: 2024-12-16 11:20:52
*{ box-sizing: border-box; margin: 20px; padding: 0; } body { animation: bg-change 5s infinite; } header { color: azure; } h1 { font-size: 50px; text-align: center; animation: fade-in 3s forwards; } p { font-size: 20px; text-align: center; animation: slide-in 2s forwards; } hr { width: 0%; height: 2px; background-color: #fff; border: none; animation: line-width 2s cubic-bezier(0.075, 0.82, 0.165, 1) forwards; } @keyframes lines-width { 0% { width: 0%; } 100%{ width: 100%l } } @keyframes slide-in { 0% { opactiy: 0; } 100% { opactiy: 1; color: black } }
Powrót